/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to revbrowser.py

  • Committer: Martin Albisetti
  • Date: 2008-04-25 20:14:40 UTC
  • mfrom: (463.2.4 bug.78765)
  • mto: This revision was merged to the branch mainline in revision 471.
  • Revision ID: argentina@gmail.com-20080425201440-n21he69wzw3niy9y
Merge patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
        
43
43
        # Create the widgets
44
44
        self._button_select = gtk.Button(_("_Select"), use_underline=True)
45
 
        self.treeview = TreeView(branch,branch.last_revision(), None)
 
45
        start_revs = [branch.last_revision(),]
 
46
        self.treeview = TreeView(branch,start_revs, None)
46
47
        
47
48
        # Set callbacks
48
49
        self._button_select.connect('clicked', self._on_select_clicked)