Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

status: remove leading '_' from checkbuttons

Changeset c7bbfee98310

Parent 4b29eda1e676

by Steve Borho

Changes to one file · Browse files at c7bbfee98310 Showing diff from parent 4b29eda1e676 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
449
450
451
452
 
453
454
455
 
449
450
451
 
452
453
454
455
@@ -449,7 +449,7 @@
  checks += (_('deleted'), _('unknown'), _('clean'), _('ignored'))     for ctype in checks: - check = gtk.CheckButton('_' + ctype) + check = gtk.CheckButton(ctype)   check.connect('toggled', self._show_toggle, ctype)   table.attach(check, col, col+1, row, row+1)   self._show_checks[ctype] = check