aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/panel-plugins
diff options
context:
space:
mode:
authorZackaryWelch <welch.zackary@gmail.com>2017-07-17 10:34:47 -0400
committerZackaryWelch <welch.zackary@gmail.com>2017-07-17 10:34:47 -0400
commit74b586a36fbb145c0d9ff7013c9a265a048cbef0 (patch)
tree76ea18cc73326c9df6986ca4aff302fb54324acf /src-qt5/core/lumina-desktop/panel-plugins
parentStart working on getting the frame extents set/used properly. Still off on th... (diff)
downloadlumina-74b586a36fbb145c0d9ff7013c9a265a048cbef0.tar.gz
lumina-74b586a36fbb145c0d9ff7013c9a265a048cbef0.tar.bz2
lumina-74b586a36fbb145c0d9ff7013c9a265a048cbef0.zip
Changed brightness icon
Diffstat (limited to 'src-qt5/core/lumina-desktop/panel-plugins')
-rw-r--r--src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/SysMenuQuick.cpp4
-rw-r--r--src-qt5/core/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/SysMenuQuick.cpp b/src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/SysMenuQuick.cpp
index 1d699ea9..e6602dd6 100644
--- a/src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/SysMenuQuick.cpp
+++ b/src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/SysMenuQuick.cpp
@@ -29,7 +29,7 @@ LSysMenuQuick::LSysMenuQuick(QWidget *parent) : QWidget(parent), ui(new Ui::LSys
connect(brighttimer, SIGNAL(timeout()), this, SLOT(setCurrentBrightness()) );
connect(ui->combo_locale, SIGNAL(currentIndexChanged(int)), this, SLOT(changeLocale()) );
//And setup the default icons
- ui->label_bright_icon->setPixmap( LXDG::findIcon("preferences-system-power-management","").pixmap(ui->label_bright_icon->maximumSize()) );
+ ui->label_bright_icon->setPixmap( LXDG::findIcon("preferences-desktop-brightness","").pixmap(ui->label_bright_icon->maximumSize()) );
ui->tool_wk_prev->setIcon( LXDG::findIcon("go-previous-view",""));
ui->tool_wk_next->setIcon( LXDG::findIcon("go-next-view","") );
ui->tool_logout->setIcon( LXDG::findIcon("system-log-out","") );
@@ -208,4 +208,4 @@ void LSysMenuQuick::changeLocale(){
QString locale = ui->combo_locale->currentData().toString();
emit CloseMenu();
LSession::handle()->switchLocale(locale);
-} \ No newline at end of file
+}
diff --git a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
index 4e6055d6..6557dbee 100644
--- a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
+++ b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
@@ -57,7 +57,7 @@ void StartMenu::UpdateAll(){
ui->tool_launch_deskinfo->setIcon(LXDG::findIcon("system-help",""));
ui->tool_launch_mixer->setIcon( LXDG::findIcon("preferences-desktop-sound","") );
- ui->label_bright_icon->setPixmap( LXDG::findIcon("preferences-system-power-management","").pixmap(ui->tool_goto_apps->iconSize()) );
+ ui->label_bright_icon->setPixmap( LXDG::findIcon("preferences-desktop-brightness","").pixmap(ui->tool_goto_apps->iconSize()) );
ui->label_locale_icon->setPixmap( LXDG::findIcon("preferences-desktop-locale","").pixmap(ui->tool_goto_apps->iconSize()) );
ui->tool_set_nextwkspace->setIcon(LXDG::findIcon("go-next-view",""));
ui->tool_set_prevwkspace->setIcon(LXDG::findIcon("go-previous-view",""));
bgstack15