From f90e43e2b05fef6bca65d086a78cec4cee3c0dec Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 14 Feb 2009 12:29:07 +0000 Subject: Fix a bug where public screens would remain open if NetSurf was the last visitor window to close. svn path=/trunk/netsurf/; revision=6485 --- amiga/gui.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/amiga/gui.c b/amiga/gui.c index b8cc69f7a..06bd182e2 100755 --- a/amiga/gui.c +++ b/amiga/gui.c @@ -1399,6 +1399,11 @@ void gui_quit(void) { while(!CloseScreen(scrn)); } + else + { + /* have a go at closing the public screen, apparently this is OK to do */ + CloseScreen(scrn); + } FreeVec(nsscreentitle); -- cgit v1.2.3