mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
GuiCitation: set instant search as the default
It was already supposed to be the default after 7d429291
, but one has to set the
default value at the level of the QSettings.
This commit is contained in:
parent
8353a53cc3
commit
0a7ba185a3
@ -1052,7 +1052,7 @@ void GuiCitation::restoreSession()
|
||||
QSettings settings;
|
||||
regexp_->setChecked(settings.value(sessionKey() + "/regex").toBool());
|
||||
casesense_->setChecked(settings.value(sessionKey() + "/casesensitive").toBool());
|
||||
instant_->setChecked(settings.value(sessionKey() + "/autofind").toBool());
|
||||
instant_->setChecked(settings.value(sessionKey() + "/autofind", true).toBool());
|
||||
style_ = settings.value(sessionKey() + "/citestyle").toInt();
|
||||
updateFilterHint();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user