From e0aae9e60a470e824f00de586ea4a5304bb405d4 Mon Sep 17 00:00:00 2001 From: Cody Hein Date: Fri, 6 Jan 2023 13:48:35 -0700 Subject: [PATCH] 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. :) --- Userland/Applications/Spreadsheet/SpreadsheetView.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Userland/Applications/Spreadsheet/SpreadsheetView.h b/Userland/Applications/Spreadsheet/SpreadsheetView.h index b6b629e8d4..911644d074 100644 --- a/Userland/Applications/Spreadsheet/SpreadsheetView.h +++ b/Userland/Applications/Spreadsheet/SpreadsheetView.h @@ -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: