summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-09-07 19:33:17 +0000
committerErik Troan <ewt@redhat.com>1999-09-07 19:33:17 +0000
commit7738b94ab432f5edd3b0be653f91acea86f6e7cf (patch)
tree448d638fb4b1bc2dd6218b676685f6bd458acd09 /gui.py
parent5f523a377ab68faba739b33e92f2983af750c6e0 (diff)
downloadanaconda-7738b94ab432f5edd3b0be653f91acea86f6e7cf.tar.gz
anaconda-7738b94ab432f5edd3b0be653f91acea86f6e7cf.tar.xz
anaconda-7738b94ab432f5edd3b0be653f91acea86f6e7cf.zip
added step tags
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 6153d1646..eeceb4a92 100755
--- a/gui.py
+++ b/gui.py
@@ -100,8 +100,13 @@ class InstallInterface:
gtkThread = GtkMainThread ()
gtkThread.start ()
- commonSteps = [LanguageWindow, KeyboardWindow, MouseWindow,
- WelcomeWindow, InstallPathWindow]
+ # This is the same as the file
+ commonSteps = [ ( LanguageWindow, "language" ),
+ ( KeyboardWindow, "keyboard" ),
+ ( MouseWindow, "mouse" ),
+ ( WelcomeWindow, "welcome" ),
+ ( InstallPathWindow, "installtype" ),
+ ]
self.finishedTODO = Event ()
self.icw = InstallControlWindow (self, commonSteps, todo)
@@ -119,6 +124,7 @@ class InstallControlWindow (Thread):
return window
def setStateList (self, list, pos):
+ print "states", list
self.stateList = []
self.stateTagByWindow = {}
for x in list: