/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 __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:
269
269
            except NotBranchError, e:
270
270
                path = e.path
271
271
 
272
 
        dialog = CommitDialog(wt, path, not branch)
273
 
        if dialog.display():
274
 
            dialog.window.connect("destroy", lambda w: gtk.main_quit())
275
 
            gtk.main()
 
272
 
 
273
        commit = CommitDialog(wt, path, not branch)
 
274
        commit.run()
276
275
 
277
276
register_command(cmd_gcommit)
278
277