Skip to content

Commit 67cea8b

Browse files
committed
🐛 Fix zindex calculation
1 parent 6ab89a5 commit 67cea8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

denops/fall/main/picker.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ async function startPicker(
9191
})),
9292
),
9393
...getActionPickerParams(),
94-
zindex: zindex + 1,
94+
zindex: zindex + 3,
9595
}),
9696
);
9797

98-
zindex += 5;
98+
zindex += 6;
9999
stack.defer(() => {
100-
zindex -= 5;
100+
zindex -= 6;
101101
});
102102
stack.use(await itemPicker.open(denops, { signal }));
103103
while (true) {

0 commit comments

Comments
 (0)