Skip to content

Commit ba85421

Browse files
committed
Increase pinned params minimum width to 160px
1 parent 7effd39 commit ba85421

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/components/nodes/BaseNode.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
// - Pinned params: need ~120px minimum for label + input
151151
// - Vertical orientation: also consider port count
152152
const nameWidth = $derived(data.name.length * 6 + 24);
153-
const pinnedParamsWidth = $derived(pinnedCount > 0 ? 120 : 0);
153+
const pinnedParamsWidth = $derived(pinnedCount > 0 ? 160 : 0);
154154
const nodeWidth = $derived(
155155
snapTo2G(Math.max(
156156
NODE.baseWidth,

0 commit comments

Comments
 (0)