fix:More stroke width for highlight

This commit is contained in:
Mark Tolmacs
2025-09-13 14:46:24 +02:00
parent 80706f733b
commit ef2bde0d03

View File

@@ -239,7 +239,7 @@ const renderBindingHighlightForBindableElement = (
element.y + appState.scrollY, element.y + appState.scrollY,
); );
context.lineWidth = FRAME_STYLE.strokeWidth / appState.zoom.value; context.lineWidth = 2 * element.strokeWidth;
context.strokeStyle = context.strokeStyle =
appState.theme === THEME.DARK ? "#035da1" : "#6abdfc"; appState.theme === THEME.DARK ? "#035da1" : "#6abdfc";