summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c1e8ba1)
raw | patch | inline | side by side (parent: c1e8ba1)
author | Max Kellermann <max@duempel.org> | |
Sat, 3 Oct 2009 21:58:10 +0000 (23:58 +0200) | ||
committer | Max Kellermann <max@duempel.org> | |
Sat, 3 Oct 2009 21:58:10 +0000 (23:58 +0200) |
The events bit mask should be cleared after every screen_update()
call.
call.
src/main.c | patch | blob | history |
diff --git a/src/main.c b/src/main.c
index a8643a393d7c01d3d9c0f9a6b362e30c970bc6a2..f874d6292dd573df994fcaed33485dda20f585b8 100644 (file)
--- a/src/main.c
+++ b/src/main.c
#endif
screen_update(mpd);
-
mpd->events = 0;
return GPOINTER_TO_INT(data);
void end_input_event(void)
{
screen_update(mpd);
+ mpd->events = 0;
}
int do_input_event(command_t cmd)