aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/panel-plugins/appmenu
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-10 10:34:34 -0400
committerKen Moore <moorekou@gmail.com>2016-06-10 10:34:34 -0400
commit2e29b1bce76c3103ec1af6afcd37661c06c69f97 (patch)
tree42a4e1b245bfd6b7c3c2cbfde7d671a806bfebed /src-qt5/core/lumina-desktop/panel-plugins/appmenu
parentChange the app menu and start menu button icon to use "start-here" as the pri... (diff)
downloadlumina-2e29b1bce76c3103ec1af6afcd37661c06c69f97.tar.gz
lumina-2e29b1bce76c3103ec1af6afcd37661c06c69f97.tar.bz2
lumina-2e29b1bce76c3103ec1af6afcd37661c06c69f97.zip
Change to using the "start-here-lumina" icon instead, "start-here" was already taken.
Diffstat (limited to 'src-qt5/core/lumina-desktop/panel-plugins/appmenu')
-rw-r--r--src-qt5/core/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp b/src-qt5/core/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
index 464f1e5b..7c9b7ab0 100644
--- a/src-qt5/core/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
+++ b/src-qt5/core/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
@@ -34,7 +34,7 @@ void LAppMenuPlugin::updateButtonVisuals(){
button->setToolTip( tr("Quickly launch applications or open files"));
button->setText( tr("Applications") );
//Use the PC-BSD icon by default (or the Lumina icon for non-PC-BSD systems)
- button->setIcon( LXDG::findIcon("start-here","Lumina-DE") );
+ button->setIcon( LXDG::findIcon("start-here-lumina","Lumina-DE") );
}
// ========================
bgstack15