Add icons in clear history option in back and forward buttons

Add icon which is also shown in tools > clear_recent_history

Differential Revision: https://phabricator.kde.org/D11756
remotes/origin/anmolgautam
Anmol Gautam 8 years ago committed by David Rosca
parent b97685f57a
commit fe4f523fe4
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8
  1. 4
      src/lib/navigation/navigationbar.cpp

@ -385,7 +385,7 @@ void NavigationBar::aboutToShowHistoryBackMenu()
}
m_menuBack->addSeparator();
m_menuBack->addAction(tr("Clear history"), this, SLOT(clearHistory()));
m_menuBack->addAction(QIcon::fromTheme(QSL("edit-clear")), tr("Clear history"), this, SLOT(clearHistory()));
}
void NavigationBar::aboutToShowHistoryNextMenu()
@ -419,7 +419,7 @@ void NavigationBar::aboutToShowHistoryNextMenu()
}
m_menuForward->addSeparator();
m_menuForward->addAction(tr("Clear history"), this, SLOT(clearHistory()));
m_menuForward->addAction(QIcon::fromTheme(QSL("edit-clear")), tr("Clear history"), this, SLOT(clearHistory()));
}
void NavigationBar::aboutToShowToolsMenu()

Loading…
Cancel
Save