From dc197b74ded582db174948fa0ce01335727e9aa0 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 10 Jun 2016 10:28:33 -0400 Subject: Change the app menu and start menu button icon to use "start-here" as the primary icon, and the lumina icon as the fallback. --- src-qt5/core/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp | 3 +-- src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'src-qt5/core') 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 318d03fa..464f1e5b 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("pcbsd","Lumina-DE") ); + button->setIcon( LXDG::findIcon("start-here","Lumina-DE") ); } // ======================== @@ -131,4 +131,3 @@ void LAppMenuPlugin::UpdateMenu(){ tmpact->setWhatsThis("internal::logout"); } - 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(); } - -- cgit