diff options
| author | Mladen Horvat <acid-burn@opendreambox.org> | 2011-04-20 11:30:53 +0200 |
|---|---|---|
| committer | Mladen Horvat <acid-burn@opendreambox.org> | 2011-04-20 11:30:53 +0200 |
| commit | 98150ed3e9f2dc503f7068dcaea1d99fe0dbc9ad (patch) | |
| tree | 213eb96e0ba58226a172ffc2d4d99202c9e82eb3 /lib/python/Screens/VirtualKeyBoard.py | |
| parent | 1976ce9ce95e9e2ec75958a2c7e89c71d0778048 (diff) | |
| download | enigma2-98150ed3e9f2dc503f7068dcaea1d99fe0dbc9ad.tar.gz enigma2-98150ed3e9f2dc503f7068dcaea1d99fe0dbc9ad.zip | |
VirtualKeyBoard.py: fix typo (Lanq -> Lang). refs #750
Diffstat (limited to 'lib/python/Screens/VirtualKeyBoard.py')
| -rwxr-xr-x | lib/python/Screens/VirtualKeyBoard.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Screens/VirtualKeyBoard.py b/lib/python/Screens/VirtualKeyBoard.py index ebc347c6..c0d0c10f 100755 --- a/lib/python/Screens/VirtualKeyBoard.py +++ b/lib/python/Screens/VirtualKeyBoard.py @@ -112,16 +112,16 @@ class VirtualKeyBoard(Screen): "deleteBackward": self.backClicked, "back": self.exit }, -2) - self.setLanq() + self.setLang() self.onExecBegin.append(self.setKeyboardModeAscii) self.onLayoutFinish.append(self.buildVirtualKeyBoard) def switchLang(self): self.lang = self.nextLang - self.setLanq() + self.setLang() self.buildVirtualKeyBoard() - def setLanq(self): + def setLang(self): if self.lang == 'de_DE': self.keys_list = [ [u"EXIT", u"1", u"2", u"3", u"4", u"5", u"6", u"7", u"8", u"9", u"0", u"BACKSPACE"], |
