summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbfox <bfox>2001-01-04 21:15:44 +0000
committerbfox <bfox>2001-01-04 21:15:44 +0000
commit9a9b769afcc53aad15c067ff3438a83c6f98c1af (patch)
tree502fe27f396cfa8a08e7a725ef5624035f8723cc
parentdb09cb35710b90381d2e20fe5cf59c71e533aad8 (diff)
downloadanaconda-9a9b769afcc53aad15c067ff3438a83c6f98c1af.tar.gz
anaconda-9a9b769afcc53aad15c067ff3438a83c6f98c1af.tar.xz
anaconda-9a9b769afcc53aad15c067ff3438a83c6f98c1af.zip
Commented out code to load ads. Currently, it only loads the Red Hat logo in the window
-rw-r--r--iw/progress_gui.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/iw/progress_gui.py b/iw/progress_gui.py
index 6553d9aee..0e65b3c8c 100644
--- a/iw/progress_gui.py
+++ b/iw/progress_gui.py
@@ -160,17 +160,19 @@ class InstallProgressWindow (InstallWindow):
import glob
files = []
- if (not os.environ.has_key('LANG') or
- not os.environ['LANG'] or
- os.environ['LANG'] == 'en_US'):
+# if (not os.environ.has_key('LANG') or
+# not os.environ['LANG'] or
+# os.environ['LANG'] == 'en_US'):
- pixmaps1 = glob.glob("/usr/share/anaconda/pixmaps/progress_*")
- pixmaps2 = glob.glob("pixmaps/progress_*")
- if len(pixmaps1) < len(pixmaps2):
- files = pixmaps2
- else:
- files = pixmaps1
+# pixmaps1 = glob.glob("/usr/share/anaconda/pixmaps/progress_*")
+# pixmaps2 = glob.glob("pixmaps/progress_*")
+# if len(pixmaps1) < len(pixmaps2):
+# files = pixmaps2
+# else:
+# files = pixmaps1
+
+ files = ["progress_first.png"]
pixmaps = []
for pixmap in files:
if string.find (pixmap, "progress_first.png") < 0: