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

  • Committer: Daniel Schierbeck
  • Date: 2007-11-20 12:21:07 UTC
  • Revision ID: daniel.schierbeck@gmail.com-20071120122107-vgape11qkdozckh5
Made the tag list appear sorted in the viz.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
    def show_push(self, item):
87
87
        from bzrlib.plugins.gtk.push import PushDialog
88
88
        dialog = PushDialog(self.repository, self.revids[0], self.branch)
89
 
        response = dialog.run()
90
 
 
91
 
        if response != gtk.RESPONSE_NONE:
92
 
            dialog.destroy()
 
89
        dialog.run()
93
90
 
94
91
    def show_tag(self, item):
95
92
        from bzrlib.plugins.gtk.tags import AddTagDialog
96
93
        dialog = AddTagDialog(self.repository, self.revids[0], self.branch)
97
94
        response = dialog.run()
98
 
 
99
95
        if response != gtk.RESPONSE_NONE:
100
96
            dialog.hide()
101
97