[racket-users] Re: editor-snip clickback not working in DrRacket interaction window

2018-10-01 Thread Philippe M
el "inspector" (λ (selection #:interactions i) (send i insert (make-snip)) #f)) Regards Philippe On Thursday, September 27, 2018 at 9:02:29 PM UTC+2, Philippe M wrote: > > Hi, > > It seems that clickbacks are not working when a snip is displayed in > DrRacket in

[racket-users] editor-snip clickback not working in DrRacket interaction window

2018-09-27 Thread Philippe M
Hi, It seems that clickbacks are not working when a snip is displayed in DrRacket interaction window. Here is a sample program: #lang racket/gui (define (show-dialog) (define f (new dialog% [label "Dialog"] [style '(close-button)])) (define m (new message% [label "Clicked"] [parent f]))