diff options
author | Ken Moore <moorekou@gmail.com> | 2015-11-25 09:21:47 -0500 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-11-25 09:21:47 -0500 |
commit | fb23ed11cd04ca42b37611e27815428789bbc753 (patch) | |
tree | eebf3fbabcf0a0256eb84f307dd58e2c31bf29b5 /lumina-desktop | |
parent | Adjust some more text on the "settings" menu. (diff) | |
download | lumina-fb23ed11cd04ca42b37611e27815428789bbc753.tar.gz lumina-fb23ed11cd04ca42b37611e27815428789bbc753.tar.bz2 lumina-fb23ed11cd04ca42b37611e27815428789bbc753.zip |
Change the icon for the individual items in the workspace switcher plugin (something different than the main panel button icon).
Diffstat (limited to 'lumina-desktop')
-rw-r--r-- | lumina-desktop/panel-plugins/desktopswitcher/LDesktopSwitcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/desktopswitcher/LDesktopSwitcher.cpp b/lumina-desktop/panel-plugins/desktopswitcher/LDesktopSwitcher.cpp index 433441dd..c51e4b4a 100644 --- a/lumina-desktop/panel-plugins/desktopswitcher/LDesktopSwitcher.cpp +++ b/lumina-desktop/panel-plugins/desktopswitcher/LDesktopSwitcher.cpp @@ -117,7 +117,7 @@ void LDesktopSwitcher::openMenu(){ } QAction* LDesktopSwitcher::newAction(int what, QString name) { - QAction *act = new QAction(LXDG::findIcon("preferences-desktop-display-color", ":/images/preferences-desktop-display-color.png"), name, this); + QAction *act = new QAction(LXDG::findIcon("preferences-desktop-display", ""), name, this); act->setWhatsThis(QString::number(what)); return act; } |