This commit is contained in:
punkrockguy318 2008-06-29 01:13:50 +00:00
parent e560984671
commit 2ebe9a8a46
1 changed files with 7 additions and 7 deletions

14
gfceu
View File

@ -268,13 +268,13 @@ class GfceuApp:
print 'Try reinstalling the application.' print 'Try reinstalling the application.'
sys.exit(1) sys.exit(1)
#try: try:
print "Using: " + glade_file print "Using: " + glade_file
widgets = gtk.Builder() widgets = gtk.Builder()
widgets.add_from_file(glade_file) widgets.add_from_file(glade_file)
widgets.connect_signals(self) widgets.connect_signals(self)
#except: except:
# self.print_error("Couldn't load the UI data.", 24) self.print_error("Couldn't load the UI data.", 24)
widgets.get_object("main_window").show_all() widgets.get_object("main_window").show_all()