summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2010-04-11 19:57:06 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2010-04-11 19:57:06 +0000
commiteb19a649e7317abc028bd1e9cf7236187e64a9cb (patch)
treecc2128ecc204480a99daf2e1d9aaa82a6481c6b5 /amiga
parent88449e3328a4c514103ca500252acdf223426d98 (diff)
downloadnetsurf-eb19a649e7317abc028bd1e9cf7236187e64a9cb.tar.gz
netsurf-eb19a649e7317abc028bd1e9cf7236187e64a9cb.tar.bz2
Fix crash in kiosk mode
svn path=/trunk/netsurf/; revision=10369
Diffstat (limited to 'amiga')
-rw-r--r--amiga/theme.c2
1 files changed, 2 insertions, 0 deletions
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))
{