summaryrefslogtreecommitdiff
path: root/amiga/gui.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2008-09-23 21:41:52 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2008-09-23 21:41:52 +0000
commit9b76a47bbe36bd302a188072de935d3dbbbcb614 (patch)
tree237ee24a0846fac3f5baab0506e9d53a44a62c9f /amiga/gui.c
parent95663c5660daea6d57393e16fec9645dd3e127d3 (diff)
downloadnetsurf-9b76a47bbe36bd302a188072de935d3dbbbcb614.tar.gz
netsurf-9b76a47bbe36bd302a188072de935d3dbbbcb614.tar.bz2
If use_os_pointers is off and no Wait pointer image has been loaded from disk, we now
use the OS busy pointer instead of the OS default pointer. svn path=/trunk/netsurf/; revision=5427
Diffstat (limited to 'amiga/gui.c')
-rwxr-xr-xamiga/gui.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 78bf209aa..0041cb443 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -1588,7 +1588,17 @@ void gui_window_set_pointer(struct gui_window *g, gui_pointer_shape shape)
}
else
{
- SetWindowPointer(g->win,TAG_DONE);
+ if(shape == GUI_POINTER_WAIT)
+ {
+ SetWindowPointer(g->win,
+ WA_BusyPointer,TRUE,
+ WA_PointerDelay,TRUE,
+ TAG_DONE);
+ }
+ else
+ {
+ SetWindowPointer(g->win,TAG_DONE);
+ }
}
}