Upside down widgets in Kivy

Asked

Viewed 46 times

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:

inserir a descrição da imagem aqui

1 answer

4

  • 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 @

  • F1 in your application, not in IDE Anyway, you have the config file too: https://kivy.org/doc/stable/guide/config.html#configure-kivy

  • 1

    Thank you very much, with this last link I finally got ><

  • I updated the answer with this link too

Browser other questions tagged

You are not signed in. Login or sign up in order to post.