Skip to content
Snippets Groups Projects
Commit 3a3f9614 authored by Ivica Bukvic's avatar Ivica Bukvic
Browse files

added workaround for the sluggish gui proposed by Miller on 12/16/2012

parent 755a8afc
No related branches found
No related tags found
No related merge requests found
......@@ -859,7 +859,9 @@ void sys_unqueuegui(void *client)
int sys_pollgui(void)
{
return (sys_domicrosleep(0, 1) || sys_poll_togui());
//return (sys_domicrosleep(0, 1) || sys_poll_togui());
// "fix" for sluggish gui proposed by Miller on 12/16/2012
return (sys_domicrosleep(0, 1) + sys_poll_togui());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment