From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qe4oO-0008DV-70 for garchives@archives.gentoo.org; Tue, 05 Jul 2011 12:33:08 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8503E21C0A6; Tue, 5 Jul 2011 12:33:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5350C21C0A6 for ; Tue, 5 Jul 2011 12:33:01 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D3B191B4019 for ; Tue, 5 Jul 2011 12:33:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 30A508003D for ; Tue, 5 Jul 2011 12:33:00 +0000 (UTC) From: "Wiktor W Brodlo" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Wiktor W Brodlo" Message-ID: <2a7536e8f56298a6cf4f938f43fca186e6453a76.wiktor@gentoo> Subject: [gentoo-commits] proj/anaconda:master commit in: iw/ X-VCS-Repository: proj/anaconda X-VCS-Files: iw/profile_gui.py X-VCS-Directories: iw/ X-VCS-Committer: wiktor X-VCS-Committer-Name: Wiktor W Brodlo X-VCS-Revision: 2a7536e8f56298a6cf4f938f43fca186e6453a76 Date: Tue, 5 Jul 2011 12:33:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: adfe8c48e52b4344f7fb3d94a50e3690 commit: 2a7536e8f56298a6cf4f938f43fca186e6453a76 Author: wiktor w brodlo brodlo net> AuthorDate: Tue Jul 5 12:32:48 2011 +0000 Commit: Wiktor W Brodlo brodlo net> CommitDate: Tue Jul 5 12:32:48 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/anaconda.git;= a=3Dcommit;h=3D2a7536e8 iw/profile_gui.py: fix radiobutton creation --- iw/profile_gui.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iw/profile_gui.py b/iw/profile_gui.py index 6641b31..ecc35cd 100644 --- a/iw/profile_gui.py +++ b/iw/profile_gui.py @@ -60,10 +60,10 @@ class ProfileWindow(InstallWindow): box =3D self.xml.get_widget("profiles_box") =09 # This isn't on the page but is required to make a group dynamically. - dummy =3D gtk.RadioButton(label=3Dprofile) + dummy =3D gtk.RadioButton() =09 for profile in profiles: - cb =3D gtk.RadioButton(dummy, label=3Dprofile) + cb =3D gtk.RadioButton(group=3Ddummy, label=3Dprofile, use_underline=3D= False) box.pack_start(cb) =09 self.buttons =3D dummy.get_group()