Vkeyboard: Request Android keyboard only if vkeyboard isn't enabled.

This commit is contained in:
Qua-non 2012-07-24 02:25:41 +05:30
parent a3b082e4d1
commit 95e9d5a48a
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ class WindowPygame(WindowBase):
def request_keyboard(self, *largs):
keyboard = super(WindowPygame, self).request_keyboard(*largs)
if android:
if android and not self.allow_vkeyboard:
android.show_keyboard()
return keyboard