aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-10-15 07:48:08 -0400
committerKen Moore <moorekou@gmail.com>2015-10-15 07:48:08 -0400
commit08a69d9cd37655b8c60a60784d3fca31c48e447b (patch)
tree855fe8bb3e8ef78ba9984665dac6aa83be0eaec4
parentChange the tab name in lumina-fileinfo to "File Information" to ensure consis... (diff)
downloadlumina-08a69d9cd37655b8c60a60784d3fca31c48e447b.tar.gz
lumina-08a69d9cd37655b8c60a60784d3fca31c48e447b.tar.bz2
lumina-08a69d9cd37655b8c60a60784d3fca31c48e447b.zip
Change the icon for the "showdesktop" plugin to be an image of the desktop (user-desktop) instead of a house.
-rw-r--r--lumina-desktop/panel-plugins/showdesktop/LHomeButton.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/showdesktop/LHomeButton.cpp b/lumina-desktop/panel-plugins/showdesktop/LHomeButton.cpp
index 2cce3395..6c259b16 100644
--- a/lumina-desktop/panel-plugins/showdesktop/LHomeButton.cpp
+++ b/lumina-desktop/panel-plugins/showdesktop/LHomeButton.cpp
@@ -26,7 +26,7 @@ LHomeButtonPlugin::~LHomeButtonPlugin(){
}
void LHomeButtonPlugin::updateButtonVisuals(){
- button->setIcon( LXDG::findIcon("go-home", "") );
+ button->setIcon( LXDG::findIcon("user-desktop", "") );
}
// ========================
bgstack15