Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

synch: use history limit option to show pulled changes

This shows the revision graph of the pulled changes

Changeset 21a8a4b30c9c

Parent 91294413bd57

by Steve Borho

Changes to one file · Browse files at 21a8a4b30c9c Showing diff from parent 91294413bd57 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​synch.py Stacked
 
262
263
264
265
266
 
 
267
268
269
 
262
263
264
 
 
265
266
267
268
269
@@ -262,8 +262,8 @@
    def _view_pulled_changes(self, button):   from history import GLog - revs = (len(self.repo.changelog)-1, self.origchangecount) - opts = {'revrange' : revs} + countpulled = len(self.repo.changelog) - self.origchangecount + opts = {'limit' : countpulled }   dialog = GLog(self.ui, self.repo, self.cwd, [], opts, False)   dialog.display()