From: Juergen Spitzmueller Date: Mon, 24 Dec 2018 15:48:22 +0000 (+0100) Subject: Fix height of paragraph dialog X-Git-Tag: lyx-2.4.0dev-acb2ca7b~2834 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5258cee93e48e681cf668ca9c9eb4a4f41102cee;p=features.git Fix height of paragraph dialog Patch by Daniel Ramöller (racoon) --- diff --git a/src/frontends/qt4/GuiParagraph.cpp b/src/frontends/qt4/GuiParagraph.cpp index 49338392cc..ab6c9aef8b 100644 --- a/src/frontends/qt4/GuiParagraph.cpp +++ b/src/frontends/qt4/GuiParagraph.cpp @@ -50,6 +50,9 @@ GuiParagraph::GuiParagraph(GuiView & lv) { setupUi(this); + // fix height to minimum + setFixedHeight(sizeHint().height()); + connect(alignDefaultRB, SIGNAL(clicked()), this, SLOT(changed())); connect(alignJustRB, SIGNAL(clicked()), this, SLOT(changed())); connect(alignLeftRB, SIGNAL(clicked()), this, SLOT(changed()));