diff options
author | Matt Wilson <msw@redhat.com> | 2000-02-03 18:56:37 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-02-03 18:56:37 +0000 |
commit | b76babe3b95431179c8eea4279cbe1675c6c87db (patch) | |
tree | b7df798f37df8e8fbc46aef7c1e4e836f84ec3a0 /gui.py | |
parent | 0e6557ee9929e6db84e75d4eb523976af297166e (diff) | |
download | anaconda-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-x | gui.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 () |