diff options
author | Ken Moore <moorekou@gmail.com> | 2016-06-10 10:34:34 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-06-10 10:34:34 -0400 |
commit | 2e29b1bce76c3103ec1af6afcd37661c06c69f97 (patch) | |
tree | 42a4e1b245bfd6b7c3c2cbfde7d671a806bfebed /src-qt5/core/lumina-desktop/panel-plugins | |
parent | Change the app menu and start menu button icon to use "start-here" as the pri... (diff) | |
download | lumina-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')
-rw-r--r-- | src-qt5/core/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp | 2 | ||||
-rw-r--r-- | src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp | 2 |
2 files changed, 2 insertions, 2 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") ); } // ======================== diff --git a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp index 10301180..d57846e2 100644 --- a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp +++ b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp @@ -42,7 +42,7 @@ LStartButtonPlugin::~LStartButtonPlugin(){ void LStartButtonPlugin::updateButtonVisuals(){ button->setToolTip(tr("")); button->setText( SYSTEM::user() ); - button->setIcon( LXDG::findIcon("start-here","Lumina-DE") ); //force icon refresh + button->setIcon( LXDG::findIcon("start-here-lumina","Lumina-DE") ); //force icon refresh } void LStartButtonPlugin::updateQuickLaunch(QStringList apps){ |