summaryrefslogtreecommitdiffstats
path: root/iw/mouse.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-13 05:34:27 +0000
committerMatt Wilson <msw@redhat.com>1999-09-13 05:34:27 +0000
commit4e6349432b9becf9cddd60a9bbe37efffb67fc12 (patch)
treee015de17af22dfd957aab73792818315ac7b9fe2 /iw/mouse.py
parent19c59d8a6e69dff0bb1405258f22c767280edb13 (diff)
downloadanaconda-4e6349432b9becf9cddd60a9bbe37efffb67fc12.tar.gz
anaconda-4e6349432b9becf9cddd60a9bbe37efffb67fc12.tar.xz
anaconda-4e6349432b9becf9cddd60a9bbe37efffb67fc12.zip
many gui enhancements
Diffstat (limited to 'iw/mouse.py')
-rw-r--r--iw/mouse.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/iw/mouse.py b/iw/mouse.py
index 4e02179b0..6ea3c5f77 100644
--- a/iw/mouse.py
+++ b/iw/mouse.py
@@ -208,7 +208,16 @@ class MouseWindow (InstallWindow):
align = GtkAlignment ()
align.add (self.emulate3)
align.set_border_width (5)
-
+
+ im = self.ics.readPixmap ("gnome-mouse.png")
+ if im:
+ im.render ()
+ pix = im.make_pixmap ()
+ a = GtkAlignment ()
+ a.add (pix)
+ a.set (0.0, 0.0, 0.0, 0.0)
+ box.pack_start (a, FALSE)
+
box.pack_start (sw)
box.pack_start (self.locList, FALSE)
box.pack_start (align, FALSE)