Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1.2 and tip

stable quickop: place check box and buttons in same row

Changeset 07bf73366021

Parent ea0415117325

by David Golub

Changes to one file · Browse files at 07bf73366021 Showing diff from parent ea0415117325 Diff from another changeset...

 
76
77
78
 
79
80
81
82
83
 
84
85
86
 
96
97
98
99
 
 
 
100
101
102
 
76
77
78
79
80
81
82
83
 
84
85
86
87
 
97
98
99
 
100
101
102
103
104
105
@@ -76,11 +76,12 @@
  stwidget = status.StatusWidget(repo, pats, opts, self)   toplayout.addWidget(stwidget, 1)   + hbox = QHBoxLayout()   if self.command == 'revert':   ## no backup checkbox   chk = QCheckBox(_('Do not save backup files (*.orig)'))   self.chk = chk - toplayout.addWidget(chk) + hbox.addWidget(chk)     self.statusbar = cmdui.ThgStatusBar(self)   stwidget.showMessage.connect(self.statusbar.showMessage) @@ -96,7 +97,9 @@
  bb.rejected.connect(self.reject)   bb.button(BB.Ok).setDefault(True)   bb.button(BB.Ok).setText(LABELS[command][1]) - toplayout.addWidget(bb) + hbox.addStretch() + hbox.addWidget(bb) + toplayout.addLayout(hbox)   self.bb = bb     layout.addWidget(self.statusbar)