mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
First part of http://bugzilla.lyx.org/show_bug.cgi?id=5347
Disable full source viewing when the dialog is restored. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26941 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
bcbf7c6452
commit
757f975337
@ -201,9 +201,11 @@ void GuiViewSource::saveSession() const
|
||||
void GuiViewSource::restoreSession()
|
||||
{
|
||||
DockView::restoreSession();
|
||||
// FIXME: Full source updating is too slow to be done at startup.
|
||||
//widget_->viewFullSourceCB->setChecked(
|
||||
// settings.value(sessionKey() + "/fullsource", false).toBool());
|
||||
widget_->viewFullSourceCB->setChecked(false);
|
||||
QSettings settings;
|
||||
widget_->viewFullSourceCB->setChecked(
|
||||
settings.value(sessionKey() + "/fullsource", false).toBool());
|
||||
widget_->autoUpdateCB->setChecked(
|
||||
settings.value(sessionKey() + "/autoupdate", true).toBool());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user