/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 viz/bzrkapp.py

  • Committer: Jelmer Vernooij
  • Date: 2006-05-19 16:56:46 UTC
  • mfrom: (0.1.25 gannotate)
  • Revision ID: jelmer@samba.org-20060519165646-0d867938fdbc9097
Merge in Dan Loda's gannotate plugin and put it in annotate/

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    the last window is closed.
28
28
    """
29
29
 
30
 
    def show(self, branch, start):
 
30
    def show(self, branch, start, maxnum):
31
31
        """Open a new window to show the given branch."""
32
32
        window = BranchWindow(self)
33
 
        window.set_branch(branch, start)
 
33
        window.set_branch(branch, start, maxnum)
34
34
        window.connect("destroy", self._destroy_cb)
35
35
        window.show()
36
36