diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-07-19 14:16:44 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-07-19 14:16:44 -0300 |
commit | c0303268a04122ab78fff474e2bfca848ce1705b (patch) | |
tree | 25772795d3bca20156203ca94b983e261a0958b9 | |
parent | 15e306d702a0b9066cab2b798e53973878b605af (diff) | |
download | renpy-c0303268a04122ab78fff474e2bfca848ce1705b.tar.gz renpy-c0303268a04122ab78fff474e2bfca848ce1705b.tar.bz2 renpy-c0303268a04122ab78fff474e2bfca848ce1705b.tar.xz renpy-c0303268a04122ab78fff474e2bfca848ce1705b.zip |
Do not toggle fullscreen with 'f'
-rw-r--r-- | game/core.rpy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/game/core.rpy b/game/core.rpy index c3fa6e5..a9ce3e9 100644 --- a/game/core.rpy +++ b/game/core.rpy @@ -252,6 +252,7 @@ init 10 python: config.keymap['fast_skip'].remove('>') config.keymap['toggle_skip'].append('>') config.keymap['focus_down'].append('K_TAB') + config.keymap['toggle_fullscreen'].remove('f') ######### Done with pre-init label splashscreen: |