Gentoo Archives: gentoo-commits

From: Wiktor W Brodlo <wiktor@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/anaconda:master commit in: iw/
Date: Mon, 04 Jul 2011 14:40:22
Message-Id: bf6b9e5e22b6e7e457443b68b508fd86be3458a0.wiktor@gentoo
1 commit: bf6b9e5e22b6e7e457443b68b508fd86be3458a0
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Mon Jul 4 14:39:23 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Mon Jul 4 14:39:23 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=bf6b9e5e
7
8 iw/use_gui.py: CheckButton active assignment doesn't work, use set_active()
9
10 ---
11 iw/use_gui.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/iw/use_gui.py b/iw/use_gui.py
15 index bff7fc1..2ed1d0b 100644
16 --- a/iw/use_gui.py
17 +++ b/iw/use_gui.py
18 @@ -78,7 +78,7 @@ class UseWindow(InstallWindow):
19
20 cb = gtk.CheckButton(label=flag)
21 if flag in use_enabled:
22 - cb.active = True
23 + cb.set_active(True)
24
25 l = gtk.Label(use[flag])
26 l.set_alignment(0,0)