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

logview: make patch names blue background

Changeset ba178804fc20

Parent 43f08e1ad38f

by Yuki KODAMA

Changes to one file · Browse files at ba178804fc20 Showing diff from parent 43f08e1ad38f Diff from another changeset...

 
93
94
95
 
 
 
 
 
96
97
98
 
183
184
185
186
 
187
188
 
 
 
 
189
190
191
 
93
94
95
96
97
98
99
100
101
102
103
 
188
189
190
 
191
192
 
193
194
195
196
197
198
199
@@ -93,6 +93,11 @@
  if rev in self.revisions:   del self.revisions[rev]   + self.mqpatches = [] + if hasattr(self.repo, 'mq'): + self.repo.mq.parse_series() + self.mqpatches = [p.name for p in self.repo.mq.applied] +   def on_get_flags(self):   return gtk.TREE_MODEL_LIST_ONLY   @@ -183,9 +188,12 @@
  tstr = ''   for tag in tags:   if tag not in self.hidetags: - style = {'color':'black', 'background':gtklib.PYELLOW} + bg = gtklib.PYELLOW   if tag == self.curbookmark: - style['background'] = gtklib.PORANGE + bg = gtklib.PORANGE + elif tag in self.mqpatches: + bg = gtklib.PBLUE + style = {'color': 'black', 'background': bg}   tstr += gtklib.markup(' %s ' % tag, **style) + ' '     branch = ctx.branch()