This commit is contained in:
Kovid Goyal 2012-06-03 16:30:15 +05:30
parent 82f2c10859
commit 1a45fd86e6

View File

@ -108,7 +108,7 @@ class MetadataSingleDialogBase(ResizableDialog):
# while the buttons outside them do not, leading to weirdness. # while the buttons outside them do not, leading to weirdness.
# Further, buttons with and without icons have different minimum sizes # Further, buttons with and without icons have different minimum sizes
# so things look even more out of whack. # so things look even more out of whack.
ht = self.title.height() ht = self.title.height() + 2
for but in self.findChildren(QPushButton): for but in self.findChildren(QPushButton):
but.setMaximumHeight(ht) but.setMaximumHeight(ht)
but.setMinimumHeight(ht) but.setMinimumHeight(ht)