[utilities/kate/release/26.08] addons/search: Change icon for search plugin display options
Christoph Cullmann <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit b7e91b4c228f5ce8806b0c4e15d682093451b92c by Christoph Cullmann. Committed on 16/07/2026 at 17:17. Pushed by cullmann into branch 'release/26.08'. Change icon for search plugin display options (cherry picked from commit d0f23dd06cf24ec7462fc6528980af851cff1823) Co-authored-by: Pravin Kumar S N <[email protected]> M +1 -1 addons/search/SearchPlugin.cpp https://invent.kde.org/utilities/kate/-/commit/b7e91b4c228f5ce8806b0c4e15d682093451b92c diff --git a/addons/search/SearchPlugin.cpp b/addons/search/SearchPlugin.cpp index a34f6f0b4e..a422079898 100644 --- a/addons/search/SearchPlugin.cpp +++ b/addons/search/SearchPlugin.cpp @@ -365,7 +365,7 @@ KatePluginSearchView::KatePluginSearchView(KTextEditor::Plugin *plugin, KTextEdi KAcceleratorManager::setNoAccel(m_ui.resultWidget); // Gnome does not seem to have all icons we want, so we use fall-back icons for those that are missing. - QIcon dispOptIcon = QIcon::fromTheme(QStringLiteral("games-config-options"), QIcon::fromTheme(QStringLiteral("preferences-system"))); + QIcon dispOptIcon = QIcon::fromTheme(QStringLiteral("configure"), QIcon::fromTheme(QStringLiteral("preferences-system"))); QIcon matchCaseIcon = QIcon::fromTheme(QStringLiteral("format-text-superscript"), QIcon::fromTheme(QStringLiteral("format-text-bold"))); QIcon useRegExpIcon = QIcon::fromTheme(QStringLiteral("code-context"), QIcon::fromTheme(QStringLiteral("edit-find-replace"))); QIcon expandResultsIcon = QIcon::fromTheme(QStringLiteral("view-list-tree"), QIcon::fromTheme(QStringLiteral("format-indent-more")));