OS X :drop-callback on layouts not getting called
For some reason I can't seem to get the :drop-callback on a
column-layout to get called. The exact same code works fine on Windows,
but not on OS X.
(defclass task-layout (column-layout)
()
(:default-initargs
:gap 2
:title-position :top
:title-adjust :center
:background :white
:vertical-scroll t
:visible-border :outline
:visible-min-width 180
:drop-callback 'drop-task-pane))
This is my subclass of column-layout. If I put a print or
display-message at the very beginning of drop-task-pane I see that it is
never called. The drop object is successfully created and I can see it
being dragged around in the UI, too (note: I can even drag the object
into another application and it copies over just fine).
Again, everything works wonderfully on Windows, just not on OS X.
Wondering if I've missed a step that Windows gracefully handles and I
don't know about?
Any thoughts/assistance appreciated. I also don't mind posting more code
if it would help.
Jeff M.
_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug@lispworks.com
http://www.lispworks.com/support/lisp-hug.html