how do you remove bubbles from a kivy window?

Place this code at the top of your main .py file:

from kivy.config import Config
Config.set('input', 'mouse', 'mouse,disable_multitouch')

See the documentation.

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top