From 3f9b9083ecdeb8227b91a8424f845f9b6fa3ae01 Mon Sep 17 00:00:00 2001 From: Daniel Gonzalez Albo Date: Mon, 1 Dec 2025 00:34:56 +0100 Subject: [PATCH] fix: allow selecting all rows and columns by clicking on top left corner --- webapp/IronCalc/src/components/Worksheet/Worksheet.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/IronCalc/src/components/Worksheet/Worksheet.tsx b/webapp/IronCalc/src/components/Worksheet/Worksheet.tsx index 142e06a..5c47fab 100644 --- a/webapp/IronCalc/src/components/Worksheet/Worksheet.tsx +++ b/webapp/IronCalc/src/components/Worksheet/Worksheet.tsx @@ -214,6 +214,7 @@ const Worksheet = forwardRef( onAllSheetSelected: () => { model.setSelectedCell(1, 1); model.setSelectedRange(1, 1, LAST_ROW, LAST_COLUMN); + refresh(); }, onCellSelected: (cell: Cell, event: React.MouseEvent) => { event.preventDefault();