Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable repomodel: mark closed branches with unicode x in a box character

http://www.fileformat.info/info/unicode/char/2327/index.htm

Changeset f05caebc59ab

Parent bc4bea39b7b7

by Adrian Buehlmann

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

 
484
485
486
487
 
488
489
490
 
 
491
492
493
 
484
485
486
 
487
488
 
 
489
490
491
492
493
@@ -484,10 +484,10 @@
  self.layoutChanged.emit()     def getbranch(self, ctx, gnode): - b = ctx.branch() + b = hglib.tounicode(ctx.branch())   if ctx.extra().get('close'): - b += ' (close)' - return hglib.tounicode(b) + b += u' \u2327' + return b     def gettags(self, ctx, gnode):   if ctx.rev() is None: