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

commit: tune margins

Changeset 0c5da0730e07

Parent e84111db1f2e

by Adrian Buehlmann

Changes to one file · Browse files at 0c5da0730e07 Showing diff from parent e84111db1f2e Diff from another changeset...

 
231
232
233
 
234
 
 
 
235
236
237
238
239
240
241
 
 
242
243
244
 
231
232
233
234
235
236
237
238
239
240
241
242
243
244
 
245
246
247
248
249
@@ -231,14 +231,19 @@
    commit = CommitWidget(pats, opts, None, self)   layout.addWidget(commit, 1) + layout.setContentsMargins(0, 0, 0, 0)   + bbl = QHBoxLayout() + layout.addLayout(bbl) + layout.addSpacing(9)   BB = QDialogButtonBox   bb = QDialogButtonBox(BB.Ok|BB.Cancel)   self.connect(bb, SIGNAL("accepted()"), self, SLOT("accept()"))   self.connect(bb, SIGNAL("rejected()"), self, SLOT("reject()"))   bb.button(BB.Ok).setDefault(True)   bb.button(BB.Ok).setText('Commit') - layout.addWidget(bb) + bbl.addWidget(bb, alignment=Qt.AlignRight) + bbl.addSpacing(9)   self.bb = bb     s = QSettings()