diff options
| author | Adrien Tétar | 2015-06-14 19:32:33 +0200 | 
|---|---|---|
| committer | Adrien Tétar | 2015-06-14 19:32:33 +0200 | 
| commit | 63b1e99de64d7b26bb6da3bc69e593cfb94a1105 (patch) | |
| tree | 56394cde303c17cf180525bc92df13037c8ce08b /Lib/defconQt/groupsView.py | |
| parent | f39997844c7f477ef9ba795349fa08f9817fdcac (diff) | |
| download | trufont-63b1e99de64d7b26bb6da3bc69e593cfb94a1105.tar.bz2 | |
A few fixes
Diffstat (limited to 'Lib/defconQt/groupsView.py')
| -rw-r--r-- | Lib/defconQt/groupsView.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Lib/defconQt/groupsView.py b/Lib/defconQt/groupsView.py index aa22282..1128483 100644 --- a/Lib/defconQt/groupsView.py +++ b/Lib/defconQt/groupsView.py @@ -100,8 +100,6 @@ class GroupsWindow(QWidget):          self.groupsList = GroupListWidget(self.font.groups.keys(), self)          self.groupsList.itemChanged.connect(self._groupRenamed) -        # TODO: it seems grid layout extends the column regardless of this -        self.groupsList.setMaximumWidth(4*56+1)          self.stackWidget = GroupStackWidget(self.font, parent=self) @@ -129,6 +127,8 @@ class GroupsWindow(QWidget):          layout.addWidget(self.alignLeftBox, 5, 4)          layout.addWidget(self.alignRightBox, 5, 7)          layout.addWidget(self.scrollArea, 6, 0, 4, 8) +        # TODO: calib this more +        layout.setColumnStretch(4, 1)          self.setLayout(layout)          self.setWindowTitle("%s%s%s%s" % ("Groups window – ", self.font.info.familyName, " ", self.font.info.styleName)) | 
