mirror of https://github.com/kivy/kivy.git
Vkeyboard: Request Android keyboard only if vkeyboard isn't enabled.
This commit is contained in:
parent
a3b082e4d1
commit
95e9d5a48a
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue