mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-27 00:40:15 +03:00
Don't do schedule message handling on a while loop.. it sometimes causes
long pauses in user input. svn path=/trunk/netsurf/; revision=13472
This commit is contained in:
parent
b375a6a293
commit
bb17cc2529
@ -2081,7 +2081,7 @@ void ami_get_msg(void)
|
||||
|
||||
if(signal & schedulesig)
|
||||
{
|
||||
while(timermsg = (struct TimerRequest *)GetMsg(msgport))
|
||||
if(timermsg = (struct TimerRequest *)GetMsg(msgport))
|
||||
{
|
||||
ReplyMsg((struct Message *)timermsg);
|
||||
schedule_run(FALSE);
|
||||
|
Loading…
Reference in New Issue
Block a user