Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

logview: write more general status in the status bar

Writes the current number of displayed changesets in relation to the total
number of changesets.

Changeset ef8bf7388dcc

Parent c493fa9981ec

by Henrik Stuart

Changes to one file · Browse files at ef8bf7388dcc Showing diff from parent c493fa9981ec Diff from another changeset...

 
258
259
260
 
 
 
 
261
262
263
 
258
259
260
261
262
263
264
265
266
267
@@ -258,6 +258,10 @@
  self.set_revision_id(revid)   if self.pbar is not None:   self.pbar.end() + revision_text = _('Displaying %(count)d of %(total)d revision(s)') % { + 'count': len(self.model), + 'total': len(self.repo) } + self.pbar.set_status_text(revision_text)   return False     def do_get_property(self, property):