summaryrefslogtreecommitdiffstats
path: root/iw/timezone.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-14 22:46:02 +0000
committerMatt Wilson <msw@redhat.com>1999-09-14 22:46:02 +0000
commit02626424a982cd16518d53875366a49059dbe74e (patch)
tree4b1f83b6ec565edefaddc324d8ac42669e6330d8 /iw/timezone.py
parentbd17bf0eb3535fb4d1d1e8770a5a89fbb9693bc3 (diff)
downloadanaconda-02626424a982cd16518d53875366a49059dbe74e.tar.gz
anaconda-02626424a982cd16518d53875366a49059dbe74e.tar.xz
anaconda-02626424a982cd16518d53875366a49059dbe74e.zip
swapon as we find swap parts in our search
Diffstat (limited to 'iw/timezone.py')
-rw-r--r--iw/timezone.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/iw/timezone.py b/iw/timezone.py
index ddc0838d0..469b35982 100644
--- a/iw/timezone.py
+++ b/iw/timezone.py
@@ -91,6 +91,7 @@ class TimezoneWindow (InstallWindow):
nb = GtkNotebook ()
mainBox = GtkVBox (FALSE, 5)
+
tz = timezonemap.new (path)
self.tz = tz
map = Map (tz.map)
@@ -111,6 +112,14 @@ class TimezoneWindow (InstallWindow):
hbox = GtkHBox (FALSE, 5)
hbox.pack_start (label, FALSE)
hbox.pack_start (views, FALSE)
+ im = self.ics.readPixmap ("timezone.png")
+ if im:
+ im.render ()
+ pix = im.make_pixmap ()
+ a = GtkAlignment ()
+ a.add (pix)
+ a.set (1.0, 0.0, 0.0, 0.0)
+ hbox.pack_start (a, TRUE)
frame = GtkFrame ()
frame.set_shadow_type (SHADOW_IN)