Make hover target for menu button more reasonable

This commit is contained in:
Jon Staab
2026-02-13 15:22:30 -08:00
parent cb06c4e954
commit 6f32c1932f
+1 -1
View File
@@ -17,7 +17,7 @@
if (popover) {
const {x, y, width, height} = popover.popper.getBoundingClientRect()
if (!between([x, x + width], clientX) || !between([y, y + height + 30], clientY)) {
if (!between([x, x + width], clientX) || !between([y - 50, y + height + 50], clientY)) {
popover.hide()
}
}