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-Tag: 2015-4~4597 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=55fa7f768bb7618f2daaf43f147609c76e077b8b;p=openembedded-core.git pybootchartgui: Set the initial state of "Show more" correctly 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 164bdfbd3a..11207015d8 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)