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

history: sort branches so they are easier to find

Finding branches in branch-heavy repositories currently requires you to find
the proverbial needle in a haystack.

Changeset 84124f23248a

Parent 9e885146b3a6

by Henrik Stuart

Changes to one file · Browse files at 84124f23248a Showing diff from parent 9e885146b3a6 Diff from another changeset...

 
149
150
151
152
 
153
154
155
 
149
150
151
 
152
153
154
155
@@ -149,7 +149,7 @@
  # refresh branch names   self.branchcombo.get_model().clear()   self.branchcombo.append_text(_('Branches...')) - for name in branch_names: + for name in sorted(branch_names):   self.branchcombo.append_text(name)     # try to restore previously selected item