Issue setting Kivy to fullscreen

后端 未结 6 1919
一个人的身影
一个人的身影 2021-02-20 12:42

I\'m trying to write an application that runs kivy at full screen. But these are my issues:

1) When I run the command:

#Config.set(\'graphics\', \'fullsc         


        
6条回答
  •  时光取名叫无心
    2021-02-20 13:12

    Answering lately For those who are still struggling to figure out how to have the true fullscreen. I have managed to get the rid of those black strip by adding Config.set('graphics','window_state'_'maximized' just after the fullscreen call. the whole code looks like

    from kivy.config import Config
    
    # ...
    
    if __name__ == "__main__":
    
        Config.set('graphics', 'fullscreen', 'auto')
        Config.set('graphics', 'window_state', 'maximized')
        Config.write()
        YourApp().run()
    

提交回复
热议问题