From fa5703196f2541780092bbfcbe07acb827d89c4e Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Mon, 24 Dec 2018 16:18:54 +0100 Subject: [PATCH] Fix Text Properties dialog height MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Patch by Daniel Ramöller (racoon) --- src/frontends/qt4/GuiCharacter.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/frontends/qt4/GuiCharacter.cpp b/src/frontends/qt4/GuiCharacter.cpp index ddeea8aa5f..b03ba9661a 100644 --- a/src/frontends/qt4/GuiCharacter.cpp +++ b/src/frontends/qt4/GuiCharacter.cpp @@ -213,6 +213,9 @@ GuiCharacter::GuiCharacter(GuiView & lv) { setupUi(this); + // fix height to minimum + setFixedHeight(sizeHint().height()); + connect(buttonBox, SIGNAL(clicked(QAbstractButton *)), this, SLOT(slotButtonBox(QAbstractButton *))); connect(autoapplyCB, SIGNAL(stateChanged(int)), this, -- 2.39.5