diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-11-18 22:02:10 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-11-18 22:02:10 +0000 |
commit | 3fdab58f727dcdb3ab8401d6385aae3649b897ee (patch) | |
tree | 2718fbf7007e3b97815801c50f685e95500506b4 /gui.py | |
parent | 24087d2a980cada74188dc6409ab2bd008767d38 (diff) | |
download | anaconda-3fdab58f727dcdb3ab8401d6385aae3649b897ee.tar.gz anaconda-3fdab58f727dcdb3ab8401d6385aae3649b897ee.tar.xz anaconda-3fdab58f727dcdb3ab8401d6385aae3649b897ee.zip |
unbreak things from jjneely. this is a hack
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1303,7 +1303,9 @@ class InstallControlWindow: # Create header at the top of the installer if runres != '640x480': - p = readPixmapDithered("anaconda_header.png") + # FIXME: this is a hack + ics = InstallControlState (self) + p = ics.readPixmapDithered("anaconda_header.png") if p is not None: a = gtk.Alignment() a.set(0.5, 0.5, 1.0, 1.0) |