Fix mouse cursor not changing on OS X during DND
The cursor almost always looks like the one used for copying. Add missing breaks in a switch statement to fix this. See #14726.
This commit is contained in:
parent
ddbfe5720e
commit
f40e8bff69
@ -1215,10 +1215,16 @@ unsigned int wxOnDraggingEnteredOrUpdated(wxWidgetCocoaImpl* viewImpl,
|
||||
{
|
||||
case wxDragLink:
|
||||
nsresult = NSDragOperationLink;
|
||||
break;
|
||||
|
||||
case wxDragMove:
|
||||
nsresult = NSDragOperationMove;
|
||||
break;
|
||||
|
||||
case wxDragCopy:
|
||||
nsresult = NSDragOperationCopy;
|
||||
break;
|
||||
|
||||
default :
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user