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

commit: allow parent label(s) to be cropped

otherwise moving the vertical splitter to the right is limited by
the length of the summary text.

Changeset f1e08d6ac08c

Parent 414d2bb08f3c

by Adrian Buehlmann

Changes to one file · Browse files at f1e08d6ac08c Showing diff from parent 414d2bb08f3c Diff from another changeset...

 
84
85
86
87
 
 
 
88
89
90
 
84
85
86
 
87
88
89
90
91
92
@@ -84,7 +84,9 @@
  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) - addrow(_('Parent:'), QLabel(ptext)) + lbl = QLabel(ptext) + lbl.minimumSizeHint = lambda: QSize(0, 0) + addrow(_('Parent:'), lbl)   addrow(_('User:'), usercombo)   frame = QFrame()   frame.setLayout(form)