With further testing there seems to be a problem with anything that has a
'TextInput' !
Using a very simple example like "kivy-examples/guide/designwithkv/main.py" this runs fine in the IDE
but if I add A TextInput to it's "kivy-examples/guide/designwithkv/controller.kv" file as follows-
Enter #:kivy 1.0
<Controller>:
label_wid: my_custom_label
BoxLayout:
orientation: 'vertical'
padding: 20
Button:
text: 'My controller info is: ' + root.info
on_press: root.do_action()
Label:
id: my_custom_label
text: 'My label before button press'
TextInput:
text: 'Starting text'
then it will not run from the PyCharm IDE but
does with no problem from command:
python kivy-examples/guide/designwithkv/main.py
except when closed exits with-
process 26123: arguments to dbus_message_unref() were incorrect, assertion "message->generation == _dbus_current_generation" failed in file dbus-message.c line 1722.