Show an icon under the pointer for drag saves (missed from previous commit)

svn path=/trunk/netsurf/; revision=10671
This commit is contained in:
Chris Young 2010-07-28 21:33:51 +00:00
parent b6b86e8acc
commit 95a6de5f7e
1 changed files with 4 additions and 1 deletions

View File

@ -1003,6 +1003,9 @@ void ami_handle_msg(void)
switch(result & WMHI_CLASSMASK) // class
{
case WMHI_MOUSEMOVE:
if(drag_icon)
ami_drag_icon_move(drag_icon);
GetAttr(SPACE_AreaBox, (Object *)gwin->objects[GID_BROWSER],
(ULONG *)&bbox);
@ -1128,7 +1131,7 @@ void ami_handle_msg(void)
break;
}
if(drag_save && !gwin->mouse_state)
if(drag_save_data && !gwin->mouse_state)
ami_drag_save(gwin->win);
break;