mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
Only show the configuration of theme icons on X11
Also hide the ui items in the constructor to prevent flickering.
This commit is contained in:
parent
4738ba0f1a
commit
db32d1b155
@ -2524,6 +2524,11 @@ PrefUserInterface::PrefUserInterface(GuiPreferences * form)
|
||||
iconSetCO->addItem(qt_("Default"), QString());
|
||||
iconSetCO->addItem(qt_("Classic"), "classic");
|
||||
iconSetCO->addItem(qt_("Oxygen"), "oxygen");
|
||||
|
||||
#if (!defined Q_WS_X11 || QT_VERSION < 0x040600)
|
||||
useSystemThemeIconsCB->hide();
|
||||
themeIconsLA->hide();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
@ -2545,10 +2550,6 @@ void PrefUserInterface::update(LyXRC const & rc)
|
||||
if (iconset < 0)
|
||||
iconset = 0;
|
||||
iconSetCO->setCurrentIndex(iconset);
|
||||
#if (QT_VERSION < 0x040600)
|
||||
useSystemThemeIconsCB->hide();
|
||||
themeIconsLA->hide();
|
||||
#endif
|
||||
useSystemThemeIconsCB->setChecked(rc.use_system_theme_icons);
|
||||
uiFileED->setText(toqstr(external_path(rc.ui_file)));
|
||||
lastfilesSB->setValue(rc.num_lastfiles);
|
||||
|
Loading…
Reference in New Issue
Block a user