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

csinfo: set minimumSizeHint width of SummaryPanel to zero

this allows splitter movements to clip the SummaryPanel

Changeset 3c142f987d35

Parent f6fe3b8c4b1d

by Adrian Buehlmann

Changes to one file · Browse files at 3c142f987d35 Showing diff from parent f6fe3b8c4b1d Diff from another changeset...

 
547
548
549
 
 
 
 
550
551
552
 
547
548
549
550
551
552
553
554
555
556
@@ -547,6 +547,10 @@
  def is_expanded(self):   return self.expand_btn.is_expanded()   + def minimumSizeHint(self): + s = QWidget.minimumSizeHint(self) + return QSize(0, s.height()) +  LABEL_PAT = re.compile(r'(?:(?<=%%)|(?<!%)%\()(\w+)(?:\)s)')    class SummaryLabel(SummaryBase, QLabel):