diff options
author | pnfisher <pnfisher> | 1999-08-23 03:38:42 +0000 |
---|---|---|
committer | pnfisher <pnfisher> | 1999-08-23 03:38:42 +0000 |
commit | 7681eb8acf997b176e8756943a71658534158361 (patch) | |
tree | 9272572547bde9128f752b1e90f3ca1a03fa698d | |
parent | da74039ef99cf249800e544dfc7b554cccd137d2 (diff) | |
download | anaconda-7681eb8acf997b176e8756943a71658534158361.tar.gz anaconda-7681eb8acf997b176e8756943a71658534158361.tar.xz anaconda-7681eb8acf997b176e8756943a71658534158361.zip |
Make language the first screen.
-rw-r--r-- | iw/language.py | 1 | ||||
-rw-r--r-- | iw/welcome.py | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/iw/language.py b/iw/language.py index 2c38b71a9..fd5ba23e9 100644 --- a/iw/language.py +++ b/iw/language.py @@ -7,6 +7,7 @@ class LanguageWindow (InstallWindow): InstallWindow.__init__ (self, ics) ics.setTitle ("Language Selection") + ics.setPrevEnabled (0) ics.setNextEnabled (1) ics.setHTML ("<HTML><BODY>Select which language you would like" "to use for the system default.</BODY></HTML>") diff --git a/iw/welcome.py b/iw/welcome.py index ba9c87754..a9c398702 100644 --- a/iw/welcome.py +++ b/iw/welcome.py @@ -7,7 +7,6 @@ class WelcomeWindow (InstallWindow): InstallWindow.__init__ (self, ics) ics.setTitle ("Welcome to Red Hat Linux!") - ics.setPrevEnabled (0) ics.setNextEnabled (1) ics.setHTML("<HTML><BODY><CENTER><H2>Welcome to<br>Red Hat Linux!</H2></CENTER>" "" |