diff options
author | senator <senator> | 2007-10-11 07:49:03 +0000 |
---|---|---|
committer | senator <senator> | 2007-10-11 07:49:03 +0000 |
commit | a7ce3d715138fffe0817855468a38f6ca46b7c60 (patch) | |
tree | b0f776f6e0ad5ec893a9e302366ff4203834a832 /client/widgets/label.cc | |
parent | 4060888474e49cc0716cdd59d4d1a73c06c5b3bc (diff) |
Updated all widgets with better width height control
Diffstat (limited to 'client/widgets/label.cc')
-rw-r--r-- | client/widgets/label.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/client/widgets/label.cc b/client/widgets/label.cc index a9a78b4..4bd1aff 100644 --- a/client/widgets/label.cc +++ b/client/widgets/label.cc @@ -38,7 +38,8 @@ Label::Label(QDomNode node) } if(elem.hasAttribute("height")) { - resize(width(), elem.attribute("height").toInt()); + //resize(width(), elem.attribute("height").toInt()); + setMinimumHeight(elem.attribute("height").toInt()); } if(elem.hasAttribute("caption")) { @@ -60,7 +61,7 @@ Label::Label(QDomNode node) setAlignment(Qt::AlignLeft); } - // Always center vertically in the adressed space + // Always center vertically in the addressed space setAlignment(Qt::AlignVCenter); } |