From 55fa7f768bb7618f2daaf43f147609c76e077b8b Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Fri, 15 Nov 2013 18:08:52 +0100 Subject: pybootchartgui: Set the initial state of "Show more" correctly Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie --- scripts/pybootchartgui/pybootchartgui/gui.py | 1 + 1 file changed, 1 insertion(+) 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) -- cgit 1.2.3-korg