/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

[merge] Alexander

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
            tree1 = wt
72
72
            tree2 = tree1.basis_tree()
73
73
 
74
 
        from bzrlib.plugins.gtk.viz.diffwin import DiffWindow
 
74
        from viz.diffwin import DiffWindow
75
75
        import gtk
76
76
        window = DiffWindow()
77
77
        window.connect("destroy", lambda w: gtk.main_quit())
215
215
 
216
216
        (wt, path) = WorkingTree.open_containing(filename)
217
217
 
218
 
        dialog = CommitDialog(wt, path)
 
218
        dialog = CommitDialog(wt, path, standalone=True)
219
219
        dialog.display()
220
220
        gtk.main()
221
221