* GuiViewSource.cpp:

- enable widget in read-only mode.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@28271 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2009-01-24 12:40:15 +00:00
parent c37f392abd
commit ded7151f8c
2 changed files with 8 additions and 4 deletions

View File

@ -126,6 +126,8 @@ void ViewSourceWidget::updateView()
return;
}
setEnabled(true);
QString content;
if (getContent(bv_, viewFullSourceCB->isChecked(), content))
document_->setPlainText(content);
@ -176,12 +178,10 @@ void GuiViewSource::updateView()
void GuiViewSource::enableView(bool enable)
{
if (!enable) {
widget_->setBufferView(bufferview());
if (!enable)
// In the opposite case, updateView() will be called anyway.
widget_->setBufferView(bufferview());
widget_->updateView();
}
widget_->setEnabled(enable);
}
@ -228,6 +228,7 @@ void GuiViewSource::restoreSession()
QSettings settings;
widget_->autoUpdateCB->setChecked(
settings.value(sessionKey() + "/autoupdate", true).toBool());
widget_->updateView();
}

View File

@ -190,6 +190,9 @@ What's new
- Fix handling of $$p variable in converters configuration. Introduce $$r
variable for the original input file.
- Enable view-source widget for read-only documents.
* DOCUMENTATION AND LOCALIZATION
- Fix compilation of the modernCV example file.