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

status: convert 'All/None' buttons to QToolButton - conserve horizontal space

Changeset 673ae1818df5

Parent bfff559a11ec

by Steve Borho

Changes to one file · Browse files at 673ae1818df5 Showing diff from parent bfff559a11ec Diff from another changeset...

 
122
123
124
125
 
 
126
127
128
 
 
129
130
131
 
122
123
124
 
125
126
127
128
 
129
130
131
132
133
@@ -122,10 +122,12 @@
  cpb.clicked.connect(clearPattern)     self.countlbl = QLabel() - self.allbutton = QPushButton(_('All')) + self.allbutton = QToolButton() + self.allbutton.setText(_('All'))   self.allbutton.setToolTip(_('Check all files'))   self.allbutton.clicked.connect(self.checkAll) - self.nonebutton = QPushButton(_('None')) + self.nonebutton = QToolButton() + self.nonebutton.setText(_('None'))   self.nonebutton.setToolTip(_('Uncheck all files'))   self.nonebutton.clicked.connect(self.checkNone)   hcbox = QHBoxLayout()