/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: 2007-02-03 16:03:23 UTC
  • Revision ID: jelmer@samba.org-20070203160323-b0yh0ks5ozxrpqm7
Move status to the top-level, remove its use of glade and allow double-clicking on entries to get at the diff for a file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
326
326
    
327
327
    def on_menuitem_branch_status_activate(self, widget):
328
328
        """ Branch/Status... menu handler. """
329
 
        from status import OliveStatus
330
 
        status = OliveStatus(self.wt, self.wtpath)
 
329
        from bzrlib.plugins.gtk.status import StatusDialog
 
330
        status = StatusDialog(self.wt, self.wtpath)
331
331
        status.display()
332
332
    
333
333
    @show_bzr_error