summaryrefslogtreecommitdiff
path: root/amiga/theme.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2010-09-28 18:03:03 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2010-09-28 18:03:03 +0000
commitc46e0e60155c204651ce67504e10b8523bfcbdc9 (patch)
treed26075a2e8c2e3661ea3f79c79f90d3010980c3e /amiga/theme.c
parent6e1639a032a363ab6d2fc69a1353116bbf41d509 (diff)
downloadnetsurf-c46e0e60155c204651ce67504e10b8523bfcbdc9.tar.gz
netsurf-c46e0e60155c204651ce67504e10b8523bfcbdc9.tar.bz2
Ensure kiosk_mode and frame windows are (a) handled the same wrt menus and (b) not
trying to manipulate non-existant menus svn path=/trunk/netsurf/; revision=10855
Diffstat (limited to 'amiga/theme.c')
-rw-r--r--amiga/theme.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/amiga/theme.c b/amiga/theme.c
index 3ac37c12d..cf9148581 100644
--- a/amiga/theme.c
+++ b/amiga/theme.c
@@ -390,6 +390,7 @@ void gui_window_start_throbber(struct gui_window *g)
if(!g) return;
if(option_kiosk_mode) return;
+ if(g->shared->bw->browser_window_type != BROWSER_WINDOW_NORMAL) return;
if(g->tab_node && (g->shared->tabs > 1))
{
@@ -420,6 +421,7 @@ void gui_window_stop_throbber(struct gui_window *g)
if(!g) return;
if(option_kiosk_mode) return;
+ if(g->shared->bw->browser_window_type != BROWSER_WINDOW_NORMAL) return;
if(g->tab_node && (g->shared->tabs > 1))
{