Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

-performDragOperation: not called when dragging from dock stack

Hi I have a custom view inside of a status item. I implemented a drag and drop and it all works but when dragging from a dock stack, all of the dragging methods are called except for -performDragOperation: and prepareForDragOperation:

like image 680
Alex Zielenski Avatar asked Nov 23 '11 22:11

Alex Zielenski


1 Answers

Does draggingEnded: get called? If so, just call it from there.

I know the issue from NSStatusItem. There's the same problem

like image 53
IluTov Avatar answered Nov 10 '22 14:11

IluTov