mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Warn user that uistyle reset to default requires restart
This commit is contained in:
parent
cfcc57bd89
commit
81fda3ac55
@ -2537,7 +2537,13 @@ void PrefUserInterface::applyRC(LyXRC & rc) const
|
||||
QString const uistyle = uiStyleCO->itemData(
|
||||
uiStyleCO->currentIndex()).toString();
|
||||
rc.ui_style = fromqstr(uistyle);
|
||||
if (rc.ui_style != system_lyxrc.ui_style)
|
||||
if (rc.ui_style == "default")
|
||||
// FIXME: This should work with frontend::GuiApplication::setStyle(QString())
|
||||
// Qt bug https://bugreports.qt.io/browse/QTBUG-58268
|
||||
frontend::Alert::warning(_("Restart needed"),
|
||||
_("Resetting the user interface style to 'Default'"
|
||||
" requires a restart of LyX."));
|
||||
else
|
||||
frontend::GuiApplication::setStyle(uistyle);
|
||||
|
||||
rc.ui_file = internal_path(fromqstr(uiFileED->text()));
|
||||
|
Loading…
Reference in New Issue
Block a user