1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

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

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: