Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

treemodel: prepend down/up arrow to summary of incoming/outgoing csets

This provides an incoming/outgoing marker for when the graph is turned off

Changeset 1d6d86c6df21

Parent 9ea3e9ac237d

by Adrian Buehlmann

Changes to one file · Browse files at 1d6d86c6df21 Showing diff from parent 9ea3e9ac237d Diff from another changeset...

 
175
176
177
 
 
178
179
180
 
 
181
182
183
 
175
176
177
178
179
180
181
182
183
184
185
186
187
@@ -175,9 +175,13 @@
  sumstr = bstr + tstr + summary     if node in self.outgoing: + marker = hglib.toutf(u'\u2191 ') # up arrow + sumstr = marker + sumstr   status = -1   elif revid >= self.origtip:   if revid >= len(self.repo) - self.npreviews: + marker = hglib.toutf(u'\u2193 ') # down arrow + sumstr = marker + sumstr   status = 2   else:   status = 1