Issue setting Kivy to fullscreen

后端 未结 6 1853
一个人的身影
一个人的身影 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:27

    Had a similar problem. Using the 'auto' option got rid of the bands for me.

    Window.fullscreen = 'auto'
    

    Quote from Kivy Configuration Object documentation: "If set to auto, your current display’s resolution will be used instead. This is most likely what you want."

提交回复
热议问题