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:41:01 +0000
commit55fa7f768bb7618f2daaf43f147609c76e077b8b (patch)
treefdf8fe591fff9ef668c86b126cd722020f2edb06 /scripts/pybootchartgui
parent50c2c3435915ef1ecbde395c71c5c9581c83fb2e (diff)
downloadopenembedded-core-contrib-55fa7f768bb7618f2daaf43f147609c76e077b8b.tar.gz
pybootchartgui: Set the initial state of "Show more" correctly
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):
# 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)