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:
Chris Young 2012-02-26 11:03:09 +00:00
parent b375a6a293
commit bb17cc2529

View File

@ -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);