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

  • Committer: Robert Collins
  • Date: 2006-03-29 17:40:50 UTC
  • mto: (36.1.1 bzrk.jaq)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: robertc@robertcollins.net-20060329174050-46d95d48c9f61743
Make revision sorting and linking use merge_sorted from latest bzr.dev. This
gives a much nicer layout with features such as 'fully merged branches' not
being inappropriately shown as active - rather then point the branch is 
resurrected has its merge from mainline linked. This leads to a narrow,
more understandable view, and much less cross-hatch cases - perhaps none in 
fact.

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, robust, accurate, maxnum):
 
30
    def show(self, branch, start, robust, maxnum):
31
31
        """Open a new window to show the given branch."""
32
32
        window = BranchWindow(self)
33
 
        window.set_branch(branch, start, robust, accurate, maxnum)
 
33
        window.set_branch(branch, start, robust, maxnum)
34
34
        window.connect("destroy", self._destroy_cb)
35
35
        window.show()
36
36