Commit b6322d35 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: CAS: fixed redraw issue when entering the dropzone's subviews during a drag operation

parent 35ccb9b1
......@@ -669,10 +669,7 @@ static VLCConvertAndSave *_o_sharedInstance = nil;
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
{
if ((NSDragOperationGeneric & [sender draggingSourceOperationMask]) == NSDragOperationGeneric)
return NSDragOperationGeneric;
return NSDragOperationNone;
return [[[self superview] superview] draggingEntered:sender];
}
- (BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender
......@@ -701,10 +698,7 @@ static VLCConvertAndSave *_o_sharedInstance = nil;
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
{
if ((NSDragOperationGeneric & [sender draggingSourceOperationMask]) == NSDragOperationGeneric)
return NSDragOperationGeneric;
return NSDragOperationNone;
return [[[self superview] superview] draggingEntered:sender];
}
- (BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment