From f64521caa1758501f01aaa92013ec9fe108bb985 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6kay=20=C5=9Eat=C4=B1r?= Date: Mon, 6 May 2024 17:20:41 +0300 Subject: [PATCH] Fix indentation. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gökay Şatır Change-Id: I9b5334ee7b8178503eef7c4790acb8a5ac1f8340 --- browser/src/canvas/sections/CalcValidityDropDownSection.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser/src/canvas/sections/CalcValidityDropDownSection.ts b/browser/src/canvas/sections/CalcValidityDropDownSection.ts index f7ce3cf46..dcf5da9df 100644 --- a/browser/src/canvas/sections/CalcValidityDropDownSection.ts +++ b/browser/src/canvas/sections/CalcValidityDropDownSection.ts @@ -15,12 +15,12 @@ class CalcValidityDropDown extends HTMLObjectSection { super(sectionName, 16, 16, documentPosition, 'spreadsheet-drop-down-marker', visible); } - onClick(point: number[], e: MouseEvent): void { + onClick(point: number[], e: MouseEvent): void { this.stopPropagating(); if (app.map._docLayer._validatedCellAddress && app.calc.cellCursorVisible && app.map._docLayer._validatedCellAddress.equals(app.calc.cellAddress.toArray())) { app.map.sendUnoCommand('.uno:DataSelect'); } - } + } } app.definitions.calcValidityDropDown = CalcValidityDropDown;