Keybinding For Fullscreen - Disabled Fullscreen Borderless by default, can be changed by the player
Opened this issue ยท 6 comments
IC-SubiX commented on Apr 12, 2019, 8:04 PM UTC:
Modpack version
1.60
Can the issue be reproduced?
Yes
Logs
-/-
Issue
I wanted to open Wireless-Crafting-Terminal and instantly crashed (i opend it cuple times before, and nothing happend). It's even more strange, because ther is no crash file in the MC folder!
After a restart and i tryed to open WCT again. My hotkey is "<" on the german keybord its next to left shift. And that key got somehow bound to toggle Fullscreen after restart but in the options its not bound to any key... and it crashed again (no crash file).
This issue was moved by NillerMedDild from NillerMedDild/Enigmatica2Expert#1089.
NillerMedDild commented on Apr 12, 2019, 8:11 PM UTC:
Thank you for the report, I will investigate the issue.
gustavosouza1997 commented on Apr 13, 2019, 11:38 PM UTC:
Having a similar issue, when pressing '','|' or '/' button (on a pt-br keyboard) while there is the option to write (like chat & applied terminals) causes the game to enter/leave fullscreen mode. The keybind don't show as asigned in controls, I'm currently playing on a server with the 1.60 version, but the game don't crash/restart as happened to IC-SubiX.
mvdstam commented on Apr 14, 2019, 7:01 AM UTC:
Just wanted to check in and confirm the issue gustavosouza1997 is having . Firing KEY_PRESSED
events with keycodes 219
(meta/windows key) and/or 43
(backslash/pipe) causes the game to toggle fullscreen mode. Doesn't happen until after the main loading screen has completed.
Tested and reproduced on a fresh install of the modpack. No crashing here though, just the game switching to and from fullscreen mode.
mvdstam commented on Apr 14, 2019, 7:27 AM UTC:
I've found the issue. It's this line which causes the behaviour myself and gustavosouza1997 are experiencing, and will likely effect IC-SubiX as well.
Workaround
In config/fw.cfg
, set the enableFullscreenWindowed
setting to false
:
(..)
general {
# Enable Fullscreen Windowed (replaces Minecraft Fullscreen)
B:enableFullscreenWindowed=false
(..)
It seems to be a bug/known/unknown behaviour of the "Fullscreen-Windowed-Minecraft"-mod which causes this. Disabling the mod functionality with the above setting fixes these issues for now. As this is a client-side problem, server configs need not to be touched.
NillerMedDild commented on Apr 14, 2019, 7:45 AM UTC:
That's not a fix though, it's just disabling the mod.
NillerMedDild commented on Apr 14, 2019, 7:48 AM UTC:
But I guess that's the best option, thanks mvdstam :)