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: Sun, 03 Jul 2011 19:10:55
Message-Id: 20f4eae83668407e8ad2832f8d3a99b26846efa0.wiktor@gentoo
1 commit: 20f4eae83668407e8ad2832f8d3a99b26846efa0
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Sun Jul 3 17:52:17 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Sun Jul 3 17:52:17 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=20f4eae8
7
8 w/mirrorselect_gui.py: stop the checkboxes from taking up all the space
9
10 ---
11 iw/mirrorselect_gui.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/iw/mirrorselect_gui.py b/iw/mirrorselect_gui.py
15 index 43a7d1a..997f88d 100644
16 --- a/iw/mirrorselect_gui.py
17 +++ b/iw/mirrorselect_gui.py
18 @@ -92,7 +92,7 @@ class MirrorselectWindow(InstallWindow):
19 flags_text += " ipv6"
20 flags = gtk.Label(flags_text)
21
22 - table.attach(cb, 0, 1, rows, rows+1)
23 + table.attach(cb, 0, 1, rows, rows+1, gtk.Fill)
24 table.attach(name, 1, 2, rows, rows+1)
25 table.attach(flags, 2, 3, rows, rows+1)