2
I have a problem running any Kivy screen, because it always appears upside down. This problem is only with this specific library, the other ones I use work normally.
A simple code like:
from kivy.app import App
from kivy.uix.button import Label
class TestApp(App):
def build(self):
return Label( text = 'Hello World' )
TestApp().run()
Results in a screen upside down, as in this image:
I couldn’t open this window you pointed out to me. F1 hotkey opens Pycharm settings and not Kivy settings. You could teach how to open this settings screen, please @
– vini_henr
F1 in your application, not in IDE Anyway, you have the config file too: https://kivy.org/doc/stable/guide/config.html#configure-kivy
– Bacco
Thank you very much, with this last link I finally got ><
– vini_henr
I updated the answer with this link too
– Bacco