aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/panel-plugins/systemstart
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-10 10:28:33 -0400
committerKen Moore <moorekou@gmail.com>2016-06-10 10:28:33 -0400
commitdc197b74ded582db174948fa0ce01335727e9aa0 (patch)
tree79de2293ddc2416f9d2059ca0627b028feb19167 /src-qt5/core/lumina-desktop/panel-plugins/systemstart
parentHide duplicate favorite entries. (diff)
downloadlumina-dc197b74ded582db174948fa0ce01335727e9aa0.tar.gz
lumina-dc197b74ded582db174948fa0ce01335727e9aa0.tar.bz2
lumina-dc197b74ded582db174948fa0ce01335727e9aa0.zip
Change the app menu and start menu button icon to use "start-here" as the primary icon, and the lumina icon as the fallback.
Diffstat (limited to 'src-qt5/core/lumina-desktop/panel-plugins/systemstart')
-rw-r--r--src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp3
1 files changed, 1 insertions, 2 deletions
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 e08ef1c8..10301180 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("pcbsd","Lumina-DE") ); //force icon refresh
+ button->setIcon( LXDG::findIcon("start-here","Lumina-DE") ); //force icon refresh
}
void LStartButtonPlugin::updateQuickLaunch(QStringList apps){
@@ -117,4 +117,3 @@ void LStartButtonPlugin::openMenu(){
void LStartButtonPlugin::closeMenu(){
menu->hide();
}
-
bgstack15