From: Juergen Spitzmueller Date: Mon, 24 Dec 2018 15:48:22 +0000 (+0100) Subject: Fix height of paragraph dialog X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=4181910894cbff9b7c7e4dfa9cad34f42e6fcd19;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()));