1
0
Fork 0
mirror of https://github.com/Cloudef/bemenu synced 2024-05-06 15:46:23 +02:00

Revert "Fix pointer enter event without further motion"

This reverts commit ef1055ecce.
This commit is contained in:
Stacy Harper 2022-07-10 23:32:52 +02:00 committed by Jari Vetoniemi
parent 14e11e8a35
commit 3fc0f8a7b7

View File

@ -1192,7 +1192,7 @@ bm_menu_run_with_pointer(struct bm_menu *menu, struct bm_pointer pointer)
}
}
if (pointer.event_mask & (POINTER_EVENT_ENTER | POINTER_EVENT_MOTION)) {
if (pointer.event_mask & POINTER_EVENT_MOTION) {
menu_point_select(menu, pointer.pos_x, pointer.pos_y, displayed);
}