aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/help
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2020-02-06 23:44:24 +0100
committerAlessandro Portale <alessandro.portale@qt.io>2020-02-07 09:22:07 +0000
commit2234c517c0857fead795983e7540916e8dc430fd (patch)
tree6d5e7348fa7f2062c354e7e79acd9cb23157e666 /src/plugins/help
parenta5178afb613e1e502df8b29b1b460ea3b0c12467 (diff)
Utils: Add a non-toolbar variant of the "RELOAD" icon
New icon is: Utils::Icons::RELOAD. And the toolbar variant is now Utils::Icons::RELOAD_TOOLBAR. Change-Id: I811d83c7340a717968430ac1ce4a5c708c8ddcf9 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/help')
-rw-r--r--src/plugins/help/searchwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/help/searchwidget.cpp b/src/plugins/help/searchwidget.cpp
index 4d893e15d2..f6b1b35079 100644
--- a/src/plugins/help/searchwidget.cpp
+++ b/src/plugins/help/searchwidget.cpp
@@ -277,7 +277,7 @@ SearchSideBarItem::SearchSideBarItem()
QList<QToolButton *> SearchSideBarItem::createToolBarWidgets()
{
auto reindexButton = new QToolButton;
- reindexButton->setIcon(Utils::Icons::RELOAD.icon());
+ reindexButton->setIcon(Utils::Icons::RELOAD_TOOLBAR.icon());
reindexButton->setToolTip(tr("Regenerate Index"));
connect(reindexButton, &QAbstractButton::clicked,
static_cast<SearchWidget *>(widget()), &SearchWidget::reindexDocumentation);