From 8e1836ef13b03a36e4d3196d086cfc06c74b09d7 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 12 May 2026 22:10:56 +0200 Subject: [PATCH] Display summary count when multiple points are selected in viewport --- src/app/App.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 750bcd93..9295b0d2 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -21771,6 +21771,12 @@ export function App({ Selected in viewport: Point {selectedPathPointIndex + 1} )} + {selectedPathPointIndex === null && + selectedPathPointCount > 1 ? ( +
+ Selected in viewport: {selectedPathPointCount} points +
+ ) : null} {selectedPath.points.map((point, pointIndex) => (
Point {pointIndex + 1}