event: Remove "priority" concept.

It was replaced by the "child queue" concept (MultiQueue).
This commit is contained in:
Justin M. Keyes
2017-04-27 14:38:41 +02:00
parent f17a818519
commit 8f59d14839
8 changed files with 11 additions and 45 deletions

View File

@@ -198,7 +198,7 @@ static void ui_refresh_event(void **argv)
void ui_schedule_refresh(void)
{
loop_schedule(&main_loop, event_create(1, ui_refresh_event, 0));
loop_schedule(&main_loop, event_create(ui_refresh_event, 0));
}
void ui_resize(int new_width, int new_height)