Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

workbench: allow smaller min height for bottom pane

achieved by overriding the minimumSizeHint() function of the stacked
widget.

Changeset c88a91fcc13c

Parent 28e40cf47e7f

by Adrian Buehlmann

Changes to one file · Browse files at c88a91fcc13c Showing diff from parent 28e40cf47e7f Diff from another changeset...

 
165
166
167
168
 
 
169
170
171
 
165
166
167
 
168
169
170
171
172
@@ -165,7 +165,8 @@
  sp.setHeightForWidth(tw.sizePolicy().hasHeightForWidth())   tw.setSizePolicy(sp)   - self.stackedWidget = QStackedWidget(self.repotabs_splitter) + self.stackedWidget = sw = QStackedWidget(self.repotabs_splitter) + sw.minimumSizeHint = lambda: QSize(0, 0)     self.setCentralWidget(self.centralwidget)