Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

thgpbranch: Show current branch

Changeset e6d44fe4e3ca

Parent 1c9d9c60c4b8

by Peer Sommerlund

Changes to one file · Browse files at e6d44fe4e3ca Showing diff from parent 1c9d9c60c4b8 Diff from another changeset...

 
196
197
198
 
199
200
201
 
204
205
206
207
 
 
208
209
210
 
196
197
198
199
200
201
202
 
205
206
207
 
208
209
210
211
212
@@ -196,6 +196,7 @@
  in_lines = []   if patch_list:   dep_list = [patch_list[0]] + cur_branch = self.repo['.'].branch()   for name in patch_list:   parents = graph.deps(name)   @@ -204,7 +205,8 @@
  node_col = dep_list.index(name)   else:   node_col = len(dep_list) - node = (node_col,0,0) # (column, colour, status) tuple to draw revision node, + node_status = (name == cur_branch) and 4 or 0 + node = (node_col,0,node_status) # (column, colour, status) tuple to draw revision node,     # Find next dependency list   my_deps = []