Skip to content

Commit f539a94

Browse files
committed
ok, the build from the last commit in linux worked again. I guess
windows requires the env variable KIVY_GL_BACKEND to be angle but linux breaks with it set. The solution should probably be to put that in some conditional statement. First let me try this.
1 parent fedc2dd commit f539a94

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
#import os
44
#os.environ['KIVY_GL_BACKEND'] = 'angle_sdl2'
55

6+
from kivy import Config
7+
Config.set('graphics', 'multisamples', '0')
8+
69
import kivy
710
#kivy.require('1.0.6') # replace with your current kivy version !
811

0 commit comments

Comments
 (0)