Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

treeview: add visibility properties for summary and user

Changeset 6f5b11cd6a37

Parent ba3cc25b417b

by Adrian Buehlmann

Changes to 2 files · Browse files at 6f5b11cd6a37 Showing diff from parent ba3cc25b417b Diff from another changeset...

 
258
259
260
 
 
261
262
263
 
258
259
260
261
262
263
264
265
@@ -258,6 +258,8 @@
  column('rev', True, _('Revision Number'))   column('id', False, _('Changeset ID'))   column('branch', False, _('Branch Name')) + column('msg', True, _('Summary')) + column('user', True, _('User'))   column('date', False, _('Local Date'))   column('utc', False, _('UTC Date'))   column('age', True, _('Age'))
 
47
48
49
 
 
 
 
 
 
 
 
 
 
50
51
52
 
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@@ -47,6 +47,16 @@
  'Revisions above this number will be drawn green',   gobject.PARAM_READWRITE),   + 'msg-column-visible': (gobject.TYPE_BOOLEAN, + 'Summary', + 'Show summary column', + True, + gobject.PARAM_READWRITE), + 'user-column-visible': (gobject.TYPE_BOOLEAN, + 'User', + 'Show user column', + True, + gobject.PARAM_READWRITE),   'date-column-visible': (gobject.TYPE_BOOLEAN,   'Date',   'Show date column',