Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

thgmq: remove option to hide the patch name

Suppressing the patch name doesn't make sense.
We need some primary indentifier in the queue.

For example, we also use the patch name in the
status line ("Patch 'foo.diff' applied") anyway.

Changeset f9ec1095a861

Parent c87c93729fcb

by Adrian Buehlmann

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

 
611
612
613
614
615
616
617
 
650
651
652
 
 
653
654
655
 
611
612
613
 
614
615
616
 
649
650
651
652
653
654
655
656
@@ -611,7 +611,6 @@
    colappend(_('Show Index'), MQ_INDEX)   colappend(_('Show Status'), MQ_STATUS, active=False) - colappend(_('Show Name'), MQ_NAME)   colappend(_('Show Summary'), MQ_SUMMARY, active=False)     append(sep=True) @@ -650,6 +649,8 @@
  self.emit('repo-invalidated')     def do_get_property(self, property): + if property.name == 'name-column-visible': + return True   try:   return self.vmenu[property.name].get_active()   except: