git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@20461 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2007-09-24 11:55:16 +00:00
parent 321e384a70
commit c79cc07cbc
2 changed files with 7 additions and 1 deletions

View File

@ -376,7 +376,10 @@ void QBox::setInnerType(bool frameless, int i)
dialog_->innerBoxCO->clear();
dialog_->innerBoxCO->addItem(qt_("Parbox"));
dialog_->innerBoxCO->addItem(qt_("Minipage"));
dialog_->innerBoxCO->setCurrentIndex(i - 1);
if (i != 0)
dialog_->innerBoxCO->setCurrentIndex(i - 1);
else
dialog_->innerBoxCO->setCurrentIndex(i);
} else {
if (dialog_->innerBoxCO->count() == 2)
i += 1;

View File

@ -159,6 +159,9 @@ What's new
typing a space after switching between 2 documents with the file->Open
dialog (bug 4211).
- Fix bug in box dialog where the inner box was empty when switching
the box decoration (bug 4233).
* DOCUMENTATION