diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-23 18:40:46 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-23 18:40:46 +0000 |
commit | 2133850b33b83d2b163a7a9e0f256f7c30ca2cbd (patch) | |
tree | 9463d32a71f982c0b1ef66a2a70be16b3554deef /iw | |
parent | 3069368778edc639150a3a36fea92be650221fa6 (diff) | |
download | anaconda-2133850b33b83d2b163a7a9e0f256f7c30ca2cbd.tar.gz anaconda-2133850b33b83d2b163a7a9e0f256f7c30ca2cbd.tar.xz anaconda-2133850b33b83d2b163a7a9e0f256f7c30ca2cbd.zip |
no white dither
Diffstat (limited to 'iw')
-rw-r--r-- | iw/welcome.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/iw/welcome.py b/iw/welcome.py index bbca1ce55..beff22f13 100644 --- a/iw/welcome.py +++ b/iw/welcome.py @@ -1,4 +1,5 @@ from gtk import * +from GTK import * from iw import * from gui import _ @@ -19,8 +20,13 @@ class WelcomeWindow (InstallWindow): if im: im.render () + box = GtkEventBox () pix = im.make_pixmap () - frame.add (pix) + style = box.get_style ().copy () + style.bg[STATE_NORMAL] = style.white + box.set_style (style) + box.add (pix) + frame.add (box) return frame |