From eb19a649e7317abc028bd1e9cf7236187e64a9cb Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sun, 11 Apr 2010 19:57:06 +0000 Subject: Fix crash in kiosk mode svn path=/trunk/netsurf/; revision=10369 --- amiga/theme.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'amiga/theme.c') diff --git a/amiga/theme.c b/amiga/theme.c index f25ba12ba..afef14887 100644 --- a/amiga/theme.c +++ b/amiga/theme.c @@ -389,6 +389,7 @@ void gui_window_start_throbber(struct gui_window *g) ULONG cur_tab = 0; if(!g) return; + if(option_kiosk_mode) return; if(g->tab_node && (g->shared->tabs > 1)) { @@ -418,6 +419,7 @@ void gui_window_stop_throbber(struct gui_window *g) ULONG cur_tab = 0; if(!g) return; + if(option_kiosk_mode) return; if(g->tab_node && (g->shared->tabs > 1)) { -- cgit v1.2.3