Determines if this plugin is androgynous. It is considered androgynous if the long folder plugin is not shown according to settings. @return true to use androgynous description, false to use normal description.
| 91 | // @return true to use androgynous description, false to use normal description. |
| 92 | // |
| 93 | bool ShortFolderPlugin::IsAndrogynous() const |
| 94 | { |
| 95 | assert(m_pSettings != nullptr); |
| 96 | |
| 97 | return m_pSettings != nullptr && |
| 98 | m_pSettings->GetDropRedundantWords() && |
| 99 | !PluginUtils::IsPluginShown(*m_pSettings, LongFolderPlugin::ID); |
| 100 | } |
| 101 | |
| 102 | } // namespace Plugins |
| 103 |
nothing calls this directly
no test coverage detected