aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/panel-plugins/systemdashboard
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2017-07-19 18:57:55 +0000
committerWeblate <noreply@weblate.org>2017-07-19 18:57:55 +0000
commit72e16f90563b4998a71feed573140041f2db8fc3 (patch)
treecc9418321d40d2fa187c6b48e174cea360f7fd27 /src-qt5/core/lumina-desktop/panel-plugins/systemdashboard
parentTranslated using Weblate (Czech) (diff)
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-72e16f90563b4998a71feed573140041f2db8fc3.tar.gz
lumina-72e16f90563b4998a71feed573140041f2db8fc3.tar.bz2
lumina-72e16f90563b4998a71feed573140041f2db8fc3.zip
Merge branch 'master' of github.com:trueos/lumina
Diffstat (limited to 'src-qt5/core/lumina-desktop/panel-plugins/systemdashboard')
-rw-r--r--src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/LSysDashboard.cpp2
-rw-r--r--src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/SysMenuQuick.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/LSysDashboard.cpp b/src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/LSysDashboard.cpp
index 267a7cb0..b9d70e97 100644
--- a/src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/LSysDashboard.cpp
+++ b/src-qt5/core/lumina-desktop/panel-plugins/systemdashboard/LSysDashboard.cpp
@@ -77,7 +77,7 @@ void LSysDashboard::updateIcon(bool force){
}
void LSysDashboard::resetIcon(){
- button->setIcon( LXDG::findIcon("dashboard-show",""));
+ button->setIcon( LXDG::findIcon("arrow-down-drop-circle",""));
}
void LSysDashboard::openMenu(){
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
+}
bgstack15