summaryrefslogtreecommitdiffstats
path: root/scripts/pybootchartgui
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2013-11-15 18:08:52 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-18 12:44:06 +0000
commit1a539bb131189f83e84a35849c779ff8a969a6b6 (patch)
tree7adb96ab76a4cf5c302ac161fe74083d01451241 /scripts/pybootchartgui
parentcacd502cd389ea15ea1fb0947d3b033b39e5ad87 (diff)
downloadpoky-1a539bb131189f83e84a35849c779ff8a969a6b6.tar.gz
pybootchartgui: Set the initial state of "Show more" correctly
(From OE-Core rev: 55fa7f768bb7618f2daaf43f147609c76e077b8b) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/pybootchartgui')
-rw-r--r--scripts/pybootchartgui/pybootchartgui/gui.py1
1 files changed, 1 insertions, 0 deletions
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):
302 # Misc. options 302 # Misc. options
303 button = gtk.CheckButton("Show more") 303 button = gtk.CheckButton("Show more")
304 button.connect ('toggled', self.widget.show_toggled) 304 button.connect ('toggled', self.widget.show_toggled)
305 button.set_active(options.app_options.show_all)
305 hbox.pack_start (button, False, True) 306 hbox.pack_start (button, False, True)
306 307
307 self.pack_start(hbox, False) 308 self.pack_start(hbox, False)