summaryrefslogtreecommitdiffstats
path: root/iw/silo.py
diff options
context:
space:
mode:
authorjakub <jakub>1999-10-01 15:12:59 +0000
committerjakub <jakub>1999-10-01 15:12:59 +0000
commit1c588375180df17b5b3069004b811ab016027d20 (patch)
treeb246cd991bc6915ef800335e0734aa11a4522eed /iw/silo.py
parent6515be6c85964f3d6235aa2ab77bee144d2ef544 (diff)
downloadanaconda-1c588375180df17b5b3069004b811ab016027d20.tar.gz
anaconda-1c588375180df17b5b3069004b811ab016027d20.tar.xz
anaconda-1c588375180df17b5b3069004b811ab016027d20.zip
Add pixmap to silo dialog. An attempt to make auto selection for Sun
monitor work. Matt, how does moveto work? It does not scroll the listbox to the entry I want to...
Diffstat (limited to 'iw/silo.py')
-rw-r--r--iw/silo.py15
1 files changed, 13 insertions, 2 deletions
diff --git a/iw/silo.py b/iw/silo.py
index 6a4facc8c..0c64a193d 100644
--- a/iw/silo.py
+++ b/iw/silo.py
@@ -201,6 +201,7 @@ class SiloWindow (InstallWindow):
box = GtkVBox (FALSE, 0)
+ topBox = GtkHBox (FALSE, 2)
optionBox = GtkVBox (FALSE, 5)
optionBox.set_border_width (5)
self.bootdisk = GtkCheckButton (_("Create boot disk"))
@@ -217,8 +218,18 @@ class SiloWindow (InstallWindow):
self.silo.set_active (FALSE)
self.silo.connect ("toggled", self.toggled)
optionBox.pack_start (self.silo, FALSE)
-
- box.pack_start (optionBox, FALSE)
+ topBox.pack_start (optionBox)
+
+ im = self.ics.readPixmap ("silo.png")
+ if im:
+ im.render ()
+ pix = im.make_pixmap ()
+ a = GtkAlignment ()
+ a.add (pix)
+ a.set (1.0, 0.0, 0.0, 0.0)
+ topBox.pack_start (a, FALSE)
+
+ box.pack_start (topBox, FALSE)
box.pack_start (GtkHSeparator (), FALSE)
box.pack_start (self.radioBox, FALSE)