summaryrefslogtreecommitdiff
path: root/atari/gui.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-02-02 19:47:34 +0000
committerOle Loots <ole@monochrom.net>2011-02-02 19:47:34 +0000
commited8a97fe225cbcf41060ce3402cde6e215708473 (patch)
tree69023f41ddf6f82d87660587a84ceefd5e04855d /atari/gui.c
parent9ca01635181e2d98f2dc1d661f55b0b7b1f46720 (diff)
downloadnetsurf-ed8a97fe225cbcf41060ce3402cde6e215708473.tar.gz
netsurf-ed8a97fe225cbcf41060ce3402cde6e215708473.tar.bz2
Improved throbber graphics
svn path=/trunk/netsurf/; revision=11604
Diffstat (limited to 'atari/gui.c')
-rwxr-xr-xatari/gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/atari/gui.c b/atari/gui.c
index 2d99bc037..fe03087f4 100755
--- a/atari/gui.c
+++ b/atari/gui.c
@@ -589,7 +589,7 @@ static void throbber_advance( void * data )
/*printf("throb adv: %d\n",gw->root->toolbar->throbber.index );*/
ApplWrite( _AESapid, WM_REDRAW, gw->root->handle->handle,
work.g_x, work.g_y, work.g_w, work.g_h );
- schedule(40, throbber_advance, gw );
+ schedule(50, throbber_advance, gw );
}
void gui_window_start_throbber(struct gui_window *w)
@@ -601,7 +601,7 @@ void gui_window_start_throbber(struct gui_window *w)
WF_WORKXYWH, &work);
w->root->toolbar->throbber.running = true;
w->root->toolbar->throbber.index = THROBBER_MIN_INDEX;
- schedule(40, throbber_advance, w );
+ schedule(50, throbber_advance, w );
ApplWrite( _AESapid, WM_REDRAW, w->root->handle->handle,
work.g_x, work.g_y, work.g_w, work.g_h );
}