From 90ac40a7e70c12e608c26b6a9eb4c085c4fe41fe Mon Sep 17 00:00:00 2001 From: jvoisin Date: Fri, 5 Apr 2013 11:07:55 +0200 Subject: Fix forgotten errors of the merge --- mat-gui | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mat-gui') diff --git a/mat-gui b/mat-gui index 9aefb6b..6f100ec 100755 --- a/mat-gui +++ b/mat-gui @@ -131,7 +131,7 @@ class GUI: toolbutton.set_tooltip_text(_('Clear the filelist')) toolbar.add(toolbutton) - toolbutton = gtk.ToolButton(stock_id=gtk.STOCK_QUIT) + toolbutton = Gtk.ToolButton(stock_id=Gtk.STOCK_QUIT) toolbutton.set_label(_('Quit')) toolbutton.connect('clicked', Gtk.main_quit) toolbar.add(toolbutton) @@ -438,7 +438,8 @@ class GUI: if item['support'] == 'partial': content += '\n\tremaining : ' + item['remaining'] - expander = Gtk.Expander(title) + expander = Gtk.Expander() + expander.set_label(title) vbox.pack_start(expander, False, False, 0) label = Gtk.Label() label.set_markup(content) -- cgit v1.3