Bug Description:
When holding the ESC key, the escape menu toggles very rapidly. This creates a poor user experience.
Expected Behavior:
The escape menu should only respond to the initial key press. If ESC is pressed again (on key release or another press), it should close the menu. The menu should not repeatedly toggle while the key is held down.
Suggested Fix:
Implement proper key press/release detection instead of checking if the ESC key is currently down. Only trigger menu actions on key press events, not on key-held state.
Do this from the feature/input-manager-refactor branch
Bug Description:
When holding the ESC key, the escape menu toggles very rapidly. This creates a poor user experience.
Expected Behavior:
The escape menu should only respond to the initial key press. If ESC is pressed again (on key release or another press), it should close the menu. The menu should not repeatedly toggle while the key is held down.
Suggested Fix:
Implement proper key press/release detection instead of checking if the ESC key is currently down. Only trigger menu actions on key press events, not on key-held state.
Do this from the feature/input-manager-refactor branch