summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-09-16 15:37:24 -0400
committerChris Lumens <clumens@redhat.com>2009-12-11 16:16:18 -0500
commita6aaa7829fcd6a2dc9741cf353404b8ac443af3d (patch)
treef2f197c3debb4df4837b423b27449a312b16cf24 /iw
parent15e5b5dce995e60e5251ca33a636a7b7e86b59c3 (diff)
downloadanaconda-a6aaa7829fcd6a2dc9741cf353404b8ac443af3d.tar.gz
anaconda-a6aaa7829fcd6a2dc9741cf353404b8ac443af3d.tar.xz
anaconda-a6aaa7829fcd6a2dc9741cf353404b8ac443af3d.zip
Put less space between rows and allow text to be longer before wrapping.
Diffstat (limited to 'iw')
-rw-r--r--iw/pixmapRadioButtonGroup_gui.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/iw/pixmapRadioButtonGroup_gui.py b/iw/pixmapRadioButtonGroup_gui.py
index 38323846b..0ded4e257 100644
--- a/iw/pixmapRadioButtonGroup_gui.py
+++ b/iw/pixmapRadioButtonGroup_gui.py
@@ -55,7 +55,7 @@ class pixmapRadioButtonGroup:
description))
label.set_line_wrap(True)
if gtk.gdk.screen_width() > 640:
- wraplen = 350
+ wraplen = 600
else:
wraplen = 250
@@ -127,7 +127,7 @@ class pixmapRadioButtonGroup:
radioGroup = None
buttons = []
for item in self.entries:
- box = gtk.VBox (False, 9)
+ box = gtk.VBox (False, 6)
name = item["name"]
label = item["label"]
pixmap = item["pixmap"]
@@ -140,11 +140,11 @@ class pixmapRadioButtonGroup:
self.topLevelButtonList.append((radioGroup, box, buttons))
radioGroup.connect("toggled", self.toggled)
- finalVBox = gtk.VBox(False, 18)
+ finalVBox = gtk.VBox(False, 6)
finalVBox.set_border_width (5)
for (button, box, buttons) in self.topLevelButtonList:
- vbox = gtk.VBox (False, 9)
+ vbox = gtk.VBox (False, 6)
finalVBox.pack_start(vbox, False, False)
vbox.pack_start (button, False, False)