Spreadsheet: Remove cursor keys from is_navigation

This change allows for cursor navigation of a forumula while editing
rather than having to use the mouse to edit the cursor position within
a cell. Tab and Enter still allow you to navigate out of the cell to
next row or columns. :)
This commit is contained in:
Cody Hein 2023-01-06 13:48:35 -07:00 committed by Ali Mohammad Pur
parent 04221a7533
commit e0aae9e60a
Notes: sideshowbarker 2024-07-17 03:25:24 +09:00

View file

@ -40,10 +40,6 @@ private:
switch (event.key()) {
case KeyCode::Key_Tab:
case KeyCode::Key_Left:
case KeyCode::Key_Right:
case KeyCode::Key_Up:
case KeyCode::Key_Down:
case KeyCode::Key_Return:
return true;
default: