diff options
author | bfox <bfox> | 2001-04-27 21:34:35 +0000 |
---|---|---|
committer | bfox <bfox> | 2001-04-27 21:34:35 +0000 |
commit | 35ae943063bdbf8257ec4c09f233de91de2b283a (patch) | |
tree | dd2e02a2de72e31378a513e1c5210f32c38cde0a | |
parent | 5a5c1435c81094881a33196295f559f5fe343a2b (diff) | |
download | anaconda-35ae943063bdbf8257ec4c09f233de91de2b283a.tar.gz anaconda-35ae943063bdbf8257ec4c09f233de91de2b283a.tar.xz anaconda-35ae943063bdbf8257ec4c09f233de91de2b283a.zip |
Added basic variant to allow deadkeys to be re-enabled
-rw-r--r-- | iw/keyboard_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/keyboard_gui.py b/iw/keyboard_gui.py index 281905458..d680c08b5 100644 --- a/iw/keyboard_gui.py +++ b/iw/keyboard_gui.py @@ -134,7 +134,7 @@ class KeyboardWindow (InstallWindow): # self.variantList.append (("None",)) # for (key, variant) in self.rules[2].items (): count = 0 - for (key, variant) in (("", (_("Enable dead keys"))), + for (key, variant) in (("basic", (_("Enable dead keys"))), ("nodeadkeys", (_("Disable dead keys")))): loc = self.variantList.append ((variant,)) self.variantList.set_row_data (loc, key) |