diff --git a/app/SettingsBase.cpp b/app/SettingsBase.cpp --- a/app/SettingsBase.cpp +++ b/app/SettingsBase.cpp @@ -163,6 +163,10 @@ initHelpMenu(); configureAction->setIcon(QIcon::fromTheme(QStringLiteral("settings-configure"))); + // There's nothing to configure in info center mode + if (m_mode == BaseMode::InfoCenter) { + configureAction->setVisible(false); + } // Then a spacer so the search line-edit is kept separate spacerAction = new QWidgetAction( this );