From d7e4c8ff52c544adebc4abaaf20251f4662075ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Sat, 11 Apr 2026 02:26:35 +0200 Subject: [PATCH] =?UTF-8?q?Move=20POI=20markers=20below=20waypoints=20in?= =?UTF-8?q?=20z-index=20(1200=20=E2=86=92=20900)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit POI markers should render below waypoint markers so waypoints are always easy to click and drag. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/planner/app/lib/z-index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/planner/app/lib/z-index.ts b/apps/planner/app/lib/z-index.ts index 639b6d8..7dd4597 100644 --- a/apps/planner/app/lib/z-index.ts +++ b/apps/planner/app/lib/z-index.ts @@ -8,6 +8,6 @@ export const Z_CURSOR = -1000; export const Z_GHOST_WAYPOINT = -100; export const Z_WAYPOINT = 1000; -export const Z_POI_MARKER = 1200; +export const Z_POI_MARKER = 900; export const Z_WAYPOINT_HIGHLIGHTED = 1600; export const Z_HIGHLIGHT = 2000;