/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 olive/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2009-05-29 08:44:15 UTC
  • mfrom: (635.2.6 trunk)
  • Revision ID: jelmer@samba.org-20090529084415-acsgkxmucdjdiabp
merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
559
559
    
560
560
    def on_menuitem_branch_status_activate(self, widget):
561
561
        """ Branch/Status... menu handler. """
562
 
        from bzrlib.plugins.gtk.status import StatusDialog
563
 
        status = StatusDialog(self.wt, self.wtpath)
564
 
        response = status.run()
565
 
        if response != gtk.RESPONSE_NONE:
566
 
            status.destroy()
 
562
        from bzrlib.plugins.gtk.status import StatusWindow
 
563
        status = StatusWindow(self.wt, self.wtpath)
 
564
        status.show()
567
565
    
568
566
    def on_menuitem_branch_initialize_activate(self, widget):
569
567
        """ Initialize current directory. """