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

stable visdiff: sort file list before display

Refs #978

Changeset 3bfc45a5a226

Parent 4119e9f4e47b

by Steve Borho

Changes to one file · Browse files at 3bfc45a5a226 Showing diff from parent 4119e9f4e47b Diff from another changeset...

 
473
474
475
476
 
477
478
479
 
473
474
475
 
476
477
478
479
@@ -473,7 +473,7 @@
  return 'R'   return ' '   - for f in mod_a | add_a | rem_a: + for f in sorted(mod_a | add_a | rem_a):   model.append([get_status(f, mod_a, add_a, rem_a), hglib.toutf(f)])     self.connect('response', self.response)