Richard,

I'm trying to disable dragging on the Pasteboard. However using
set-dragable to #f also prevents the snip from being selected.

Any ideas on how I would keep a snip selectable but not dragable?

Maybe the following will help:

(define my-pasteboard%
  (class pasteboard%
    (super-new)
    (define/augment (can-interactive-move? snip)
      #f)
    (define/augment (can-interactive-resize? snip)
      #f)
   ))


Regards,

Dmitry
____________________
 Racket Users list:
 http://lists.racket-lang.org/users

Reply via email to