summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2014-07-05 19:07:20 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2014-07-05 19:07:20 +0100
commitf5c62c2291add5e6e3b8fc604831283e4883a3c6 (patch)
tree673bd6303d28137214ceeabf696b009983470f3d /amiga
parentab5b2d9afed9f6252630221723e0c2ed86fb6b5d (diff)
downloadnetsurf-f5c62c2291add5e6e3b8fc604831283e4883a3c6.tar.gz
netsurf-f5c62c2291add5e6e3b8fc604831283e4883a3c6.tar.bz2
Stop the throbber resetting itself to frame 1
Diffstat (limited to 'amiga')
-rw-r--r--amiga/theme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/theme.c b/amiga/theme.c
index d56a07048..cc8b55d7f 100644
--- a/amiga/theme.c
+++ b/amiga/theme.c
@@ -424,7 +424,7 @@ void gui_window_start_throbber(struct gui_window *g)
}
g->throbbing = true;
- g->shared->throbber_frame = 1;
+ if(g->shared->throbber_frame == 0) g->shared->throbber_frame = 1;
ami_throbber_redraw_schedule(throbber_update_interval, g);
}