aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-02-05 14:20:16 -0500
committerKen Moore <moorekou@gmail.com>2016-02-05 14:20:16 -0500
commit7016aff7293ab312a82e0ea2fd40b7363d8909a4 (patch)
tree3ce4dd4648c566a431960993837ff93b107c6c0b
parentConvert the ZFS snapshot timestamp label into a button with a dropdown menu o... (diff)
downloadlumina-7016aff7293ab312a82e0ea2fd40b7363d8909a4.tar.gz
lumina-7016aff7293ab312a82e0ea2fd40b7363d8909a4.tar.bz2
lumina-7016aff7293ab312a82e0ea2fd40b7363d8909a4.zip
Change the icon used for the "show desktop" plugin to match the icon the plugin uses when loaded on the panel.
-rw-r--r--lumina-config/LPlugins.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-config/LPlugins.cpp b/lumina-config/LPlugins.cpp
index 3f038245..629171e1 100644
--- a/lumina-config/LPlugins.cpp
+++ b/lumina-config/LPlugins.cpp
@@ -149,7 +149,7 @@ void LPlugins::LoadPanelPlugins(){
info.name = QObject::tr("Show Desktop");
info.description = QObject::tr("Hide all open windows and show the desktop");
info.ID = "homebutton";
- info.icon = "go-home";
+ info.icon = "user-desktop";
PANEL.insert(info.ID, info);
//Start Menu
info = LPI(); //clear it
bgstack15