summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-05-03 23:22:02 +0000
committerMatt Wilson <msw@redhat.com>2000-05-03 23:22:02 +0000
commit69973f085c46dcd4a24807d692c4068c51e33f3a (patch)
tree5ebc67dd179db9d2cc7d28470594a40455a8bbcf
parentbd9927d93c990802529a41e7c7e3388c49292631 (diff)
downloadanaconda-69973f085c46dcd4a24807d692c4068c51e33f3a.tar.gz
anaconda-69973f085c46dcd4a24807d692c4068c51e33f3a.tar.xz
anaconda-69973f085c46dcd4a24807d692c4068c51e33f3a.zip
don't load the keymap, it breaks things.
-rw-r--r--iw/keyboard_gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/keyboard_gui.py b/iw/keyboard_gui.py
index 6a7e64732..235fc4e3f 100644
--- a/iw/keyboard_gui.py
+++ b/iw/keyboard_gui.py
@@ -2,7 +2,6 @@ from gtk import *
from iw_gui import *
import xkb
import string
-#import keyboard
from translate import _
from kbd import Keyboard
import iutil
@@ -33,7 +32,8 @@ class KeyboardWindow (InstallWindow):
self.todo.x.setKeyboard (self.rulesbase, self.model,
self.layout, self.variant, "")
self.todo.keyboard.setfromx (self.model, self.layout)
- isys.loadKeymap(self.todo.keyboard.get())
+# XXX
+# isys.loadKeymap(self.todo.keyboard.get())
return None
def select_row (self, clist, row, col, event):