I'm receiving drag'n'dropped files in my WxWidgets application via the common wxFileDropTarget manner.
In windows, a file can be dropped anywhere on my window, however in OS X only if I drop the file over a blank area of the window does it work.
I'm doing the SetDropTarget to my main window and would like to avoid having to do this to every single control, labels, etc - a mess!
Since it works well in Windows - do you know of any workaround for this? Maybe a way of having the drag'n'drop event sink till the bottom window which is the intended drop target?