From: Peter Kjellerstedt Date: Fri, 15 Nov 2013 17:08:52 +0000 (+0100) Subject: pybootchartgui: Set the initial state of "Show more" correctly X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a539bb131189f83e84a35849c779ff8a969a6b6;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git pybootchartgui: Set the initial state of "Show more" correctly (From OE-Core rev: 55fa7f768bb7618f2daaf43f147609c76e077b8b) Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie --- diff --git a/scripts/pybootchartgui/pybootchartgui/gui.py b/scripts/pybootchartgui/pybootchartgui/gui.py index 164bdfbd3a2..11207015d8d 100644 --- a/scripts/pybootchartgui/pybootchartgui/gui.py +++ b/scripts/pybootchartgui/pybootchartgui/gui.py @@ -302,6 +302,7 @@ class PyBootchartShell(gtk.VBox): # Misc. options button = gtk.CheckButton("Show more") button.connect ('toggled', self.widget.show_toggled) + button.set_active(options.app_options.show_all) hbox.pack_start (button, False, True) self.pack_start(hbox, False)