Skip to content

Fix issue where Ctrl+C is emptying cell value and switch into insert mode instead of copying

Ghost User requested to merge fix/ctrl+c-not-copying into develop

The new function that checks whether the pressed key is a character that should result in removing the cell contents and switching into insert mode did not correctly account for key combinations such as "CTRL+C".

The function now checks whether the Control Key or the Meta Key is pressed and if so immediately returns false so that cell values can correctly be copied, or pasted.

Merge request reports