# HG changeset patch # User Goffi # Date 1524839753 -7200 # Node ID b9fd83292fc403985a596841b748ee0ba62bf061 # Parent 3a05dfa27f5e91b564a6f77dc550a8aec57b2f77 core: disabled Kivy's default behaviour of displaying settings on F1 diff -r 3a05dfa27f5e -r b9fd83292fc4 cagou/core/cagou_main.py --- a/cagou/core/cagou_main.py Sat Apr 14 20:10:19 2018 +0200 +++ b/cagou/core/cagou_main.py Fri Apr 27 16:35:53 2018 +0200 @@ -226,6 +226,11 @@ class CagouApp(App): """Kivy App for Cagou""" + def _install_settings_keys(self, window): + # we don't want default Kivy's behaviour of displaying + # a settings screen when pressing F1 or platform specific key + return + def build(self): Window.bind(on_keyboard=self.key_input) return CagouRootWidget(Label(text=u"Loading please wait"))