1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

[Speed Dial] Theme icons for context menu actions

This commit is contained in:
Mladen Pejaković 2014-01-05 11:32:51 +01:00
parent 4e8b1839b4
commit 27d4b05c2b

View File

@ -962,8 +962,8 @@ void WebView::createPageContextMenu(QMenu* menu, const QPoint &pos)
else { else {
menu->addSeparator(); menu->addSeparator();
menu->addAction(tr("&Add New Page"), this, SLOT(addSpeedDial())); menu->addAction(QIcon::fromTheme("list-add"), tr("&Add New Page"), this, SLOT(addSpeedDial()));
menu->addAction(tr("&Configure Speed Dial"), this, SLOT(configureSpeedDial())); menu->addAction(QIcon::fromTheme("configure"), tr("&Configure Speed Dial"), this, SLOT(configureSpeedDial()));
} }
} }