diff options
author | Mike Fulbright <msf@redhat.com> | 2003-10-02 20:37:24 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2003-10-02 20:37:24 +0000 |
commit | efb7db4145ba33c1c27dc037ce7c674bb7921f2c (patch) | |
tree | 52e2f47b7dbee0fdbceb0a2d4c4ca4922064c3e2 | |
parent | 59a013fa607386b7c406c1e20b3253c139f91497 (diff) | |
download | anaconda-efb7db4145ba33c1c27dc037ce7c674bb7921f2c.tar.gz anaconda-efb7db4145ba33c1c27dc037ce7c674bb7921f2c.tar.xz anaconda-efb7db4145ba33c1c27dc037ce7c674bb7921f2c.zip |
didnt detect wrapping of rnotes properly duh
-rw-r--r-- | iw/progress_gui.py | 6 |
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) |