From: Uwe Stöhr Date: Sun, 10 May 2015 19:42:45 +0000 (+0200) Subject: GuiBox.cpp: add missing braces from previous commit X-Git-Tag: 2.2.0alpha1~867 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3290d15a156ab00852f2349d035c7c9f45fa690f;p=features.git GuiBox.cpp: add missing braces from previous commit --- diff --git a/src/frontends/qt4/GuiBox.cpp b/src/frontends/qt4/GuiBox.cpp index 60a26cd4a7..86cdf8ee71 100644 --- a/src/frontends/qt4/GuiBox.cpp +++ b/src/frontends/qt4/GuiBox.cpp @@ -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(); }