diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-10-17 21:59:28 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-10-17 21:59:28 +0000 |
commit | 28c2900fa0640f79f3be7a988815531b3e90f8a4 (patch) | |
tree | b64f7905b2ba055534e84a3065076a5d426612b8 /iw | |
parent | 83eb660f75aebbf33c585e35076f4d5b32ace49b (diff) | |
download | anaconda-28c2900fa0640f79f3be7a988815531b3e90f8a4.tar.gz anaconda-28c2900fa0640f79f3be7a988815531b3e90f8a4.tar.xz anaconda-28c2900fa0640f79f3be7a988815531b3e90f8a4.zip |
2004-10-17 Jeremy Katz <katzj@redhat.com>
* iw/partition_gui.py: Fix font size to fit a little bit
better (#135731)
Diffstat (limited to 'iw')
-rw-r--r-- | iw/partition_gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py index bfc127088..857a9f9e6 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -44,7 +44,7 @@ from partRequests import * from constants import * from partition_ui_helpers_gui import * -STRIPE_HEIGHT = 32.0 +STRIPE_HEIGHT = 35.0 LOGICAL_INSET = 3.0 CANVAS_WIDTH_800 = 490 CANVAS_WIDTH_640 = 390 @@ -184,7 +184,7 @@ class DiskStripeSlice: self.box = self.group.add(gnome.canvas.CanvasRect) self.group.connect("event", self.eventHandler) self.text = self.group.add(gnome.canvas.CanvasText, - font="helvetica", size_points=8) + font="sans", size_points=8) self.update() class DiskStripe: |