diff options
author | Ken Moore <moorekou@gmail.com> | 2016-07-26 20:48:17 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-07-26 20:48:17 -0400 |
commit | 8979717d8ac8cf0bebc40a89c6e245f5b8912a09 (patch) | |
tree | 0690d50e163edea1a399761c661e0d3776e83dfe /src-qt5/core-utils/lumina-config/pages | |
parent | Fix up the y-coordinate offsets for the panels and desktop plugin area so tha... (diff) | |
download | lumina-8979717d8ac8cf0bebc40a89c6e245f5b8912a09.tar.gz lumina-8979717d8ac8cf0bebc40a89c6e245f5b8912a09.tar.bz2 lumina-8979717d8ac8cf0bebc40a89c6e245f5b8912a09.zip |
Fix up the "save" button activation for cursor theme changes.
Diffstat (limited to 'src-qt5/core-utils/lumina-config/pages')
-rw-r--r-- | src-qt5/core-utils/lumina-config/pages/page_theme.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core-utils/lumina-config/pages/page_theme.cpp b/src-qt5/core-utils/lumina-config/pages/page_theme.cpp index 781e650d..123812a1 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_theme.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_theme.cpp @@ -23,6 +23,7 @@ page_theme::page_theme(QWidget *parent) : PageWidget(parent), ui(new Ui::page_th connect(ui->font_session_theme, SIGNAL(currentIndexChanged(int)), this, SLOT(settingsChanged()) ); connect(ui->tool_session_newcolor, SIGNAL(clicked()), this, SLOT(sessionEditColor()) ); connect(ui->tool_session_newtheme, SIGNAL(clicked()), this, SLOT(sessionEditTheme()) ); + connect(ui->combo_session_cursortheme, SIGNAL(currentIndexChanged(int)), this, SLOT(settingsChanged()) ); updateIcons(); } |