From d2fbd3be94d015fd3133d32c69137b10fd7d7e8f Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 17 Dec 2009 23:53:28 -0500 Subject: Finally remove the x_already_set hack. I believe this was primarily needed for test mode (which we no longer have), and more recently live installs (which we have a flag to test for). Therefore, there's no reason to maintain this hack too. --- gui.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gui.py') diff --git a/gui.py b/gui.py index 2ba0905c5..d50babfcc 100755 --- a/gui.py +++ b/gui.py @@ -1250,8 +1250,7 @@ class InstallInterface: def run(self, anaconda): self.anaconda = anaconda - # XXX x_already_set is a hack - if anaconda.id.keyboard and not anaconda.id.x_already_set: + if anaconda.id.keyboard and not flags.livecdInstall: anaconda.id.keyboard.activate() self.icw = InstallControlWindow (self.anaconda) -- cgit