/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-gtk

MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
            print >>sys.stderr, "Can't find bzrlib location"
79
79
            sys.exit(1)
80
80
 
81
 
 
82
 
from olive import OliveGtk
83
81
from bzrlib.plugin import load_plugins
84
82
load_plugins()
85
83
 
86
84
import bzrlib.ui
87
 
import olive.ui
88
 
bzrlib.ui.ui_factory = olive.ui.GtkUIFactory()
 
85
import ui
 
86
bzrlib.ui.ui_factory = ui.GtkUIFactory()
89
87
 
 
88
from olive import OliveGtk
90
89
app = OliveGtk()
91
90
gtk.main()