/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: Szilveszter Farkas
  • Date: 2009-05-27 09:19:42 UTC
  • mfrom: (625.8.1 LP316310)
  • mto: This revision was merged to the branch mainline in revision 639.
  • Revision ID: szilveszter.farkas@gmail.com-20090527091942-oqeaopqm7ei3wsn8
Merge Jasper's fix for Olive status dialog.

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. """