From 3ecd27792386bc59ad1b3377fe0090526d870da0 Mon Sep 17 00:00:00 2001 From: Olivier Keshavjee Date: Mon, 29 Jun 2015 23:44:16 +0200 Subject: [PATCH] Set correct value to theme combobox --- src/ui/editors/fullScreenEditor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/editors/fullScreenEditor.py b/src/ui/editors/fullScreenEditor.py index 343bfd67..1d4f4962 100644 --- a/src/ui/editors/fullScreenEditor.py +++ b/src/ui/editors/fullScreenEditor.py @@ -74,6 +74,7 @@ class fullScreenEditor(QWidget): for t in lst: themeIni = os.path.join(p, t) self.lstThemes.addItem(os.path.splitext(t)[0]) + self.lstThemes.setCurrentText(settings.fullScreenTheme) self.lstThemes.currentTextChanged.connect(self.setTheme) self.lstThemes.setMaximumSize(QSize(300, QFontMetrics(qApp.font()).height())) self.bottomPanel.layout().addWidget(QLabel(self.tr("Theme:"), self))