There is a bug in Java 6/7 on OSX where during Drag and Drop operations, it ignores the META (CMD) key. (Ctrl key works just fine on Windows, Ctrl key is also ignores on OSX) I REALLY need to have this working.
See: Java Drag and drop on OS X reports Move instead of Copy
I tried adding a KeyEventDispatcher listener to the KeyboardFocusManager, but that isn't called during a Drag operation.
Nor does the processKeyEvent() method of the parent JPanel ever get invoked.
So, is there any place where I can put a hook to detect META key presses?