From 4378d34e226d6e6ace744984d4b2f9dca7d57517 Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Sun, 24 May 2026 22:06:01 +0200 Subject: [PATCH] fix(floorplan-editor): hand tool sits AFTER the 'Modalita disegno' label Earlier rev had the hand first, before the label. Feedback: the label belongs at the very start of the strip; the hand reads better as the first of the tool buttons it groups with. Same gesture and exclusive-group behaviour, just visually: Modalita disegno [hand] [SET][UNSET][UP][DOWN][DOOR] ... --- src/components/floorplan-editor/views/FloorplanToolbar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/floorplan-editor/views/FloorplanToolbar.tsx b/src/components/floorplan-editor/views/FloorplanToolbar.tsx index 8f24f9a..a2aebc4 100644 --- a/src/components/floorplan-editor/views/FloorplanToolbar.tsx +++ b/src/components/floorplan-editor/views/FloorplanToolbar.tsx @@ -42,19 +42,19 @@ export const FloorplanToolbar: FC = ({ state, dispatch, canUndo, canRedo, return ( + { LocalizeText('floor.plan.editor.draw.mode') } { setPanMode && ( setPanMode(!panMode) } > ) } - { LocalizeText('floor.plan.editor.draw.mode') } { BRUSH_BUTTONS.map(b => { const active = state.brush.action === b.mode && !panMode;