Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.5, 2.1, and 2.1.1

stable shelve: sort shelves from newest to last on the shelf comboboxes

Changeset 10de07ca5161

Parent 0ec310b43cda

by Angel Ezquerra

Changes to one file · Browse files at 10de07ca5161 Showing diff from parent 0ec310b43cda Diff from another changeset...

 
372
373
374
375
 
 
376
377
378
 
372
373
374
 
375
376
377
378
379
@@ -372,7 +372,8 @@
  def refreshCombos(self):   shelvea, shelveb = self.currentPatchA(), self.currentPatchB()   - shelves = self.repo.thgshelves() + # Sort shelves from newest to oldest + shelves = self.repo.thgshelves()[::-1]   disp = [_('Shelf: %s') % hglib.tounicode(s) for s in shelves]     patches = self.repo.thgmqunappliedpatches