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

Backed out changeset: d6f1b029244f

Changeset cb1094e2ec06

Parent d6f1b029244f

by Steve Borho

Changes to one file · Browse files at cb1094e2ec06 Showing diff from parent d6f1b029244f Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
447
448
449
450
 
451
452
 
453
454
455
 
456
457
458
 
447
448
449
 
450
451
 
452
453
454
 
455
456
457
458
@@ -447,12 +447,12 @@
    self._show_checks = {}   row, col = 0, 0 - checks = ('modified', 'added', 'removed') + checks = (_('modified'), _('added'), _('removed'))   if self.count_revs() <= 1: - checks += ('deleted', 'unknown', 'clean', 'ignored') + 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