After saving a file using the Ctrl+S keyboard shortcut, the control key appears to be stuck and if the user scrolls up or down, the text will zoom in or out as if they are holding down the control key.
Technical Investigation
The root cause of this issue is that there is hotkey behavior stacked on top of the hotkey behavior that is handled by the FastColoredTextBox component.
The hotkey behavior in the MainForm most likely needs to be moved to the FastColoredTextBox to prevent this strange interaction between components.
Solution
The save hotkey can be added to hotkey behavior here
The save functionality here can instead call the SaveToFile method here
Description
Technical Investigation
Solution