summaryrefslogtreecommitdiffstats
path: root/iw/progress_gui.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-10-02 20:37:24 +0000
committerMike Fulbright <msf@redhat.com>2003-10-02 20:37:24 +0000
commitefb7db4145ba33c1c27dc037ce7c674bb7921f2c (patch)
tree52e2f47b7dbee0fdbceb0a2d4c4ca4922064c3e2 /iw/progress_gui.py
parent59a013fa607386b7c406c1e20b3253c139f91497 (diff)
downloadanaconda-efb7db4145ba33c1c27dc037ce7c674bb7921f2c.tar.gz
anaconda-efb7db4145ba33c1c27dc037ce7c674bb7921f2c.tar.xz
anaconda-efb7db4145ba33c1c27dc037ce7c674bb7921f2c.zip
didnt detect wrapping of rnotes properly duh
Diffstat (limited to 'iw/progress_gui.py')
-rw-r--r--iw/progress_gui.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/iw/progress_gui.py b/iw/progress_gui.py
index dfe6d0a22..d21137377 100644
--- a/iw/progress_gui.py
+++ b/iw/progress_gui.py
@@ -125,11 +125,10 @@ class InstallProgressWindow_NEW (InstallWindow):
if self.pixtimer is None:
self.pixtimer = timer.Timer()
- wrappixlist = 0
num = self.pixcurnum
if num >= len(self.pixmaps):
num = 0
- wrappixlist = 1
+ self.wrappedpixlist = 1
pix = self.ics.readPixmapDithered (self.pixmaps[num], 425, 225)
if pix:
@@ -144,7 +143,7 @@ class InstallProgressWindow_NEW (InstallWindow):
self.pixcurnum = num + 1
# take screenshot if desired
- if flags.autoscreenshot and not wrappixlist:
+ if flags.autoscreenshot and not self.wrappedpixlist:
# let things settle down graphically??
processEvents()
time.sleep(5)
@@ -233,6 +232,7 @@ class InstallProgressWindow_NEW (InstallWindow):
self.pixmaps = pixmaps
self.pixtimer = None
self.pixcurnum = 0
+ self.wrappedpixlist = 0
# Create vbox to contain components of UI
vbox = gtk.VBox (gtk.FALSE, 10)