aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/SystemWindow.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-04-30 10:04:18 -0400
committerKen Moore <ken@ixsystems.com>2018-04-30 10:04:18 -0400
commit04d7a107c05b067d08fd6334bb71d7b582415990 (patch)
treec44afb3dc917dfcc6ecd729830394562227c91ea /src-qt5/core/lumina-desktop/SystemWindow.cpp
parentMake sure the libreoffice icons are no longer bypassed. Use the ones in the c... (diff)
downloadlumina-04d7a107c05b067d08fd6334bb71d7b582415990.tar.gz
lumina-04d7a107c05b067d08fd6334bb71d7b582415990.tar.bz2
lumina-04d7a107c05b067d08fd6334bb71d7b582415990.zip
Switch the icon used for the cancel button in the logout dialog.
Make it use "system-cancel" before it looks for "dialog-cancel"
Diffstat (limited to 'src-qt5/core/lumina-desktop/SystemWindow.cpp')
-rw-r--r--src-qt5/core/lumina-desktop/SystemWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop/SystemWindow.cpp b/src-qt5/core/lumina-desktop/SystemWindow.cpp
index dbcec2a2..af9188bc 100644
--- a/src-qt5/core/lumina-desktop/SystemWindow.cpp
+++ b/src-qt5/core/lumina-desktop/SystemWindow.cpp
@@ -20,7 +20,7 @@ SystemWindow::SystemWindow() : QDialog(), ui(new Ui::SystemWindow){
ui->tool_restart->setIcon( LXDG::findIcon("system-reboot","") );
ui->tool_shutdown->setIcon( LXDG::findIcon("system-shutdown","") );
ui->tool_suspend->setIcon( LXDG::findIcon("system-suspend","") );
- ui->push_cancel->setIcon( LXDG::findIcon("dialog-cancel","") );
+ ui->push_cancel->setIcon( LXDG::findIcon("system-cancel","dialog-cancel") );
ui->push_lock->setIcon( LXDG::findIcon("system-lock-screen","") );
//Connect the signals/slots
connect(ui->tool_logout, SIGNAL(clicked()), this, SLOT(sysLogout()) );
bgstack15