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

commit: bold labels

for consistency with csinfo

Changeset 8f056beaa79e

Parent 325a50a17a13

by Adrian Buehlmann

Changes to one file · Browse files at 8f056beaa79e Showing diff from parent 325a50a17a13 Diff from another changeset...

 
76
77
78
79
 
 
 
80
81
82
83
84
85
 
 
86
87
88
 
76
77
78
 
79
80
81
82
83
84
85
 
 
86
87
88
89
90
@@ -76,13 +76,15 @@
  except util.Abort:   pass   - form.addRow(_('Changeset:'), QLabel(_('Working Copy'))) + def addrow(s, w): + form.addRow("<b>%s</b>" % s, w) + addrow(('Changeset:'), QLabel(_('Working Copy')))   for ctx in repo.parents():   desc = format_desc(ctx.description(), 80)   fmt = "<span style='font-family:Courier'>%s(%s)</span> %s"   ptext = fmt % (ctx.rev(), short_hex(ctx.node()), desc) - form.addRow(_('Parent:'), QLabel(ptext)) - form.addRow(_('User:'), usercombo) + addrow(_('Parent:'), QLabel(ptext)) + addrow(_('User:'), usercombo)   frame = QFrame()   frame.setLayout(form)   frame.setFrameStyle(QFrame.NoFrame)