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

stable bisect: give the bisect dialog normal window buttons, including maximize

Changeset bca1f46f71df

Parent 4c19c31688d0

by Angel Ezquerra

Changes to one file · Browse files at bca1f46f71df Showing diff from parent 4c19c31688d0 Diff from another changeset...

 
22
23
24
25
26
 
27
28
29
 
91
92
93
94
95
 
 
96
97
98
 
22
23
24
 
 
25
26
27
28
 
90
91
92
 
 
93
94
95
96
97
@@ -22,8 +22,7 @@
  self.setWindowTitle(_('Bisect - %s') % repo.displayname)   self.setWindowIcon(qtlib.geticon('hg-bisect'))   - f = self.windowFlags() - self.setWindowFlags(f & ~Qt.WindowContextHelpButtonHint) + self.setWindowFlags(Qt.Window)   self.repo = repo     # base layout box @@ -91,8 +90,8 @@
  self.lastrev = rev   for b in self.nextbuttons:   b.setEnabled(True) - lbl.setText(_('Test this revision and report findings. ' - '(good/bad/skip)')) + lbl.setText('%s: %d (%s) -> %s' % (_('Revision'), rev.id(), rev.hash(), _('Test this revision and report findings. ' + '(good/bad/skip)')))   self.cmd.commandFinished.connect(cmdFinished)     prefix = ['bisect', '--repository', repo.root]