mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-02-24 10:24:36 +03:00
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
This commit is contained in:
parent
95663c5660
commit
9b76a47bbe
12
amiga/gui.c
12
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user