summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-02-03 18:56:37 +0000
committerMatt Wilson <msw@redhat.com>2000-02-03 18:56:37 +0000
commitb76babe3b95431179c8eea4279cbe1675c6c87db (patch)
treeb7df798f37df8e8fbc46aef7c1e4e836f84ec3a0 /gui.py
parent0e6557ee9929e6db84e75d4eb523976af297166e (diff)
downloadanaconda-b76babe3b95431179c8eea4279cbe1675c6c87db.tar.gz
anaconda-b76babe3b95431179c8eea4279cbe1675c6c87db.tar.xz
anaconda-b76babe3b95431179c8eea4279cbe1675c6c87db.zip
set x keymap from info passed into loader
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/gui.py b/gui.py
index 6c1b10d8e..228f5c489 100755
--- a/gui.py
+++ b/gui.py
@@ -243,6 +243,11 @@ class InstallInterface:
]
self.finishedTODO = Event ()
+ if todo.instClass.keyboard:
+ from xkb import XKB
+ kb = XKB()
+ (rules, model, layout, variant, options) = todo.keyboard.getXKB()
+ kb.setRule (model, layout, variant, "complete")
self.icw = InstallControlWindow (self, commonSteps, todo)
self.icw.start ()
self.finishedTODO.wait ()