Python: Kivy window resize causes crash

0
from kivy.app import App
from kivy.uix.label import Label


class MyApp(App):
    def build(self):
        return Label(text="test")


if __name__ == "__main__":
    MyApp().run()

When I try to resize it in a specific way, it crashes with this exit code

Process finished with exit code -1073741819 (0xC0000005)
python-3.x
kivy
asked on Stack Overflow Aug 7, 2020 by Kra1ven

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0