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:
Chris Young 2008-09-23 21:41:52 +00:00
parent 95663c5660
commit 9b76a47bbe

View File

@ -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);
}
}
}