aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/pages/page_theme.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-12-09 10:37:31 -0500
committerKen Moore <ken@ixsystems.com>2016-12-09 10:37:31 -0500
commitf44da8e86aa502221702c3298288bac1373a7cc7 (patch)
treef003443fece66713520486f6f9fadff5d531947c /src-qt5/core-utils/lumina-config/pages/page_theme.cpp
parentAdd a ton more quotes to the login message generator. Now up to 46, which sho... (diff)
downloadlumina-f44da8e86aa502221702c3298288bac1373a7cc7.tar.gz
lumina-f44da8e86aa502221702c3298288bac1373a7cc7.tar.bz2
lumina-f44da8e86aa502221702c3298288bac1373a7cc7.zip
Fix up the item visibility within the theme engine selector page on first load.
Diffstat (limited to 'src-qt5/core-utils/lumina-config/pages/page_theme.cpp')
-rw-r--r--src-qt5/core-utils/lumina-config/pages/page_theme.cpp2
1 files changed, 1 insertions, 1 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 0d946e81..52579ec2 100644
--- a/src-qt5/core-utils/lumina-config/pages/page_theme.cpp
+++ b/src-qt5/core-utils/lumina-config/pages/page_theme.cpp
@@ -117,7 +117,7 @@ ui->combo_session_themefile->clear();
index = ui->combo_qt5_theme->findData("internal_custom");
}
if(index>=0){ ui->combo_qt5_theme->setCurrentIndex(index); }
-
+ checkQt5Theme(); //update item visibility
QApplication::processEvents();
loading = false;
}
bgstack15