mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Hopefully better dialog policy.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27936 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fe5a20a489
commit
d5f2772922
@ -511,10 +511,13 @@ void GuiExternal::updateContents()
|
||||
draftCB->setChecked(params_.draft);
|
||||
|
||||
displayGB->setChecked(params_.display);
|
||||
displayscaleED->setEnabled(params_.display && !isBufferReadonly());
|
||||
displayscaleED->setText(QString::number(params_.lyxscale));
|
||||
bool scaled = params_.display && !isBufferReadonly() &&
|
||||
(params_.preview_mode != PREVIEW_INSTANT);
|
||||
displayscaleED->setEnabled(scaled);
|
||||
scaleLA->setEnabled(scaled);
|
||||
displayGB->setEnabled(lyxrc.display_graphics);
|
||||
displayscaleED->setEnabled(params_.preview_mode != PREVIEW_INSTANT);
|
||||
|
||||
|
||||
setRotation(*angleED, *originCO, params_.rotationdata);
|
||||
|
||||
@ -556,7 +559,11 @@ void GuiExternal::updateTemplate()
|
||||
|
||||
found = std::find(tr_begin, tr_end, external::Extra) != tr_end;
|
||||
optionsGB->setEnabled(found);
|
||||
displayscaleED->setEnabled(templ.preview_mode != PREVIEW_INSTANT);
|
||||
|
||||
bool scaled = displayGB->isChecked() && displayGB->isEnabled() &&
|
||||
!isBufferReadonly() && (templ.preview_mode != PREVIEW_INSTANT);
|
||||
displayscaleED->setEnabled(scaled);
|
||||
scaleLA->setEnabled(scaled);
|
||||
|
||||
if (!found)
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user