Reputation: 707
I've even tried adding the line Config.set('kivy', 'keyboard_mode', 'auto')
and tried Config.set('kivy', 'keyboard_mode', 'systemandmulti')
with no success, still getting that message [Window ] virtual keyboard not allowed, single mode, not docked
.
The effect of this behavior is that I can't even open the keyboard when the TextInput field is pressed.
How do I fix this bug?
Upvotes: 0
Views: 4990
Reputation: 1
May be you forget to call your mainApp class.
if name == "main":
MyApp().run()
Upvotes: 0
Reputation: 41
before you load kivy.app load kivy.config first
from kivy.config import Config
Config.set('kivy','keyboard_mode','systemanddock')
from kivy.app import App
Upvotes: 2