mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 07:19:37 +03:00
[project @ 2003-09-05 14:35:36 by bursa]
Fix wimp message queueing. svn path=/import/netsurf/; revision=267
This commit is contained in:
parent
a0c42f65da
commit
83de722a57
13
riscos/gui.c
13
riscos/gui.c
@ -1625,13 +1625,16 @@ void gui_multitask(void)
|
||||
plugin_msg_parse(&(block.message),
|
||||
(event == wimp_USER_MESSAGE_ACKNOWLEDGE ? 1 : 0));
|
||||
break;
|
||||
}
|
||||
|
||||
if (block.message.action == message_QUIT){
|
||||
netsurf_quit = 1;
|
||||
case message_QUIT :
|
||||
netsurf_quit = 1;
|
||||
break;
|
||||
|
||||
default:
|
||||
ro_gui_poll_queue(event, &block);
|
||||
break;
|
||||
|
||||
}
|
||||
else
|
||||
ro_gui_poll_queue(event, &block);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user