GuiBox.cpp: add missing braces from previous commit

This commit is contained in:
Uwe Stöhr 2015-05-10 21:42:45 +02:00
parent 4be4d4e1a6
commit 3290d15a15

View File

@ -142,10 +142,11 @@ void GuiBox::on_typeCO_activated(int index)
heightCB->setChecked(false);
setSpecial(ibox);
}
if (type != "Boxed")
if (type != "Boxed") {
if (type != "Frameless")
widthCB->setChecked(itype != "none");
pagebreakCB->setChecked(false);
}
changed();
}