diff options
author | pnfisher <pnfisher> | 1999-08-19 22:25:52 +0000 |
---|---|---|
committer | pnfisher <pnfisher> | 1999-08-19 22:25:52 +0000 |
commit | d8e6c4d5b4ed7c86c8f350745641315db878cae0 (patch) | |
tree | 0e81801c4abde2ee6eb2e07d79a0bb6dd2efc9ac /gui.py | |
parent | a51609d4815c322fbff7e6dd4d3d170488f92d84 (diff) | |
download | anaconda-d8e6c4d5b4ed7c86c8f350745641315db878cae0.tar.gz anaconda-d8e6c4d5b4ed7c86c8f350745641315db878cae0.tar.xz anaconda-d8e6c4d5b4ed7c86c8f350745641315db878cae0.zip |
Call LiloWindow.
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -16,6 +16,7 @@ from iw.congrats import * from iw.autopartition import * from iw.installtype import * from iw.dependencies import * +from iw.lilo import * import sys import GdkImlib @@ -98,13 +99,13 @@ class InstallInterface: steps = [WelcomeWindow, LanguageWindow, InstallTypeWindow, MouseWindow, KeyboardWindow, NetworkWindow, AutoPartitionWindow, PartitionWindow, - FormatWindow, PackageSelectionWindow, UnresolvedDependenciesWindow, AuthWindow, + FormatWindow, PackageSelectionWindow, UnresolvedDependenciesWindow, LiloWindow, AuthWindow, AccountWindow, InstallProgressWindow, CongratulationWindow] windows = [WelcomeWindow, LanguageWindow, InstallTypeWindow, MouseWindow, KeyboardWindow, NetworkWindow, AutoPartitionWindow, PartitionWindow, FormatWindow, PackageSelectionWindow, UnresolvedDependenciesWindow, - AuthWindow, AccountWindow, IndividualPackageSelectionWindow, + LiloWindow, AuthWindow, AccountWindow, IndividualPackageSelectionWindow, InstallProgressWindow, ConfirmPartitionWindow, CongratulationWindow] self.finishedTODO = Event () |