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

logview: show arrows in message only when graphcol is hidden

Changeset 3da4dcf3066e

Parent 923d1de0df12

by Steve Borho

Changes to one file · Browse files at 3da4dcf3066e Showing diff from parent 923d1de0df12 Diff from another changeset...

 
176
177
178
179
180
 
 
 
181
182
183
184
185
 
 
 
186
187
188
 
176
177
178
 
 
179
180
181
182
183
184
 
 
185
186
187
188
189
190
@@ -176,13 +176,15 @@
  sumstr = bstr + tstr + summary     if node in self.outgoing: - marker = hglib.toutf(u'\u2191 ') # up arrow - sumstr = marker + sumstr + if not self.showgraph: + 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 + if not self.showgraph: + marker = hglib.toutf(u'\u2193 ') # down arrow + sumstr = marker + sumstr   status = 2   else:   status = 1