comparison cagou/core/cagou_main.py @ 298:318a46e78ff6

core: removed FIXME which is not valid anymore (it was not a bug)
author Goffi <goffi@goffi.org>
date Fri, 28 Jun 2019 12:25:36 +0200
parents 04e4cd7c9351
children f55b60659ec1
comparison
equal deleted inserted replaced
297:ea213b02b755 298:318a46e78ff6
99 99
100 # we want white background by default 100 # we want white background by default
101 Window.clearcolor = (1, 1, 1, 1) 101 Window.clearcolor = (1, 1, 1, 1)
102 # we don't want multi-touch emulation with mouse 102 # we don't want multi-touch emulation with mouse
103 if sys.platform != 'android': 103 if sys.platform != 'android':
104 # FIXME: there is currently a bug in Kivy when this option is enabled 104 # this option doesn't make sense on Android and cause troubles
105 # cf. https://github.com/kivy/kivy/issues/6229 105 # cf. https://github.com/kivy/kivy/issues/6229
106 KivyConfig.set('input', 'mouse', 'mouse,disable_multitouch') 106 KivyConfig.set('input', 'mouse', 'mouse,disable_multitouch')
107 107
108 108
109 class NotifsIcon(IconButton): 109 class NotifsIcon(IconButton):
110 notifs = properties.ListProperty() 110 notifs = properties.ListProperty()