Skip to content

Commit

Permalink
EBS: fix skipping up events
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Gatto <[email protected]>
  • Loading branch information
cosmo-ray committed Jul 10, 2024
1 parent 57a112a commit 0665561
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/widget/event-base-objs.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ static InputStatue event(YWidgetState *opac, Entity *event)
}
if (any_down)
yesCall(any_down, entity, event);
} else if (ywidEveType(event) == YKEY_UP) {
}
if (ywidEveType(event) == YKEY_UP) {
Entity *on = yeGet(entity, "on-up");
Entity *any_up;

Expand Down

0 comments on commit 0665561

Please sign in to comment.