From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ra.se.axis.com (ra.se.axis.com [195.60.68.13]) by mail.openembedded.org (Postfix) with ESMTP id 301716DA6D for ; Fri, 15 Nov 2013 17:09:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by ra.se.axis.com (Postfix) with ESMTP id 9E1D225B1B for ; Fri, 15 Nov 2013 18:09:09 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at ra.se.axis.com X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from ra.se.axis.com ([127.0.0.1]) by localhost (ra.se.axis.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id DKAWkLZ1HJtu for ; Fri, 15 Nov 2013 18:09:08 +0100 (CET) Received: from boulder.se.axis.com (boulder.se.axis.com [10.0.2.104]) by ra.se.axis.com (Postfix) with ESMTP id BC2CE25B0A for ; Fri, 15 Nov 2013 18:09:08 +0100 (CET) Received: from boulder.se.axis.com (localhost [127.0.0.1]) by postfix.imss71 (Postfix) with ESMTP id A5B2DBF7 for ; Fri, 15 Nov 2013 18:09:08 +0100 (CET) Received: from seth.se.axis.com (seth.se.axis.com [10.0.2.172]) by boulder.se.axis.com (Postfix) with ESMTP id 9791FBEE for ; Fri, 15 Nov 2013 18:09:08 +0100 (CET) Received: from saur-2.se.axis.com (saur-2.se.axis.com [10.92.3.2]) by seth.se.axis.com (Postfix) with ESMTP id 965F63E06F for ; Fri, 15 Nov 2013 18:09:08 +0100 (CET) Received: from saur-2.se.axis.com (localhost [127.0.0.1]) by saur-2.se.axis.com (8.14.5/8.14.5) with ESMTP id rAFH98ek014828 for ; Fri, 15 Nov 2013 18:09:08 +0100 Received: (from pkj@localhost) by saur-2.se.axis.com (8.14.5/8.14.5/Submit) id rAFH98Zx014827 for openembedded-core@lists.openembedded.org; Fri, 15 Nov 2013 18:09:08 +0100 From: Peter Kjellerstedt To: openembedded-core@lists.openembedded.org Date: Fri, 15 Nov 2013 18:08:52 +0100 Message-Id: <5771eb2a814fadbd38ef7f1f3783b88dd4ee9f2d.1384535211.git.pkj@axis.com> X-Mailer: git-send-email 1.8.4 In-Reply-To: References: In-Reply-To: References: Subject: [PATCH 03/14] pybootchartgui: Set the initial state of "Show more" correctly X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Nov 2013 17:09:09 -0000 Signed-off-by: Peter Kjellerstedt --- 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 164bdfb..1120701 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) -- 1.8.4