Make hover target for menu button more reasonable

This commit is contained in:
Jon Staab
2026-02-13 15:22:30 -08:00
parent 22c175e4f7
commit bc84444a99
+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()
}
}