/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-01-29 23:53:29 UTC
  • Revision ID: jelmer@samba.org-20070129235329-okuy0ap5pipcebd0
Throw out the old CommitDialog code and use the new code instead, also for 'gcommit'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
    
231
231
    def on_menuitem_branch_commit_activate(self, widget):
232
232
        """ Branch/Commit... menu handler. """
233
 
        from commit import CommitDialogNew
234
 
        commit = CommitDialogNew(self.wt, self.wtpath, self.notbranch, self.get_selected_right(), self.window)
 
233
        from commit import CommitDialog
 
234
        commit = CommitDialog(self.wt, self.wtpath, self.notbranch, self.get_selected_right(), self.window)
235
235
        response = commit.run()
236
236
        if response != gtk.RESPONSE_NONE:
237
237
            commit.hide()