Re: [racket-users] Strange window behavior in OSX Yosemite DrRacket

2018-01-29 Thread Robby Findler
I guess you've probably already found the implementation, but just in case, it is here: https://github.com/racket/gui/blob/master/gui-lib/framework/private/inline-overview.rkt I think the thing you'd want to do is break out the code currently in the on-paint method (and things it needs) into

[racket-users] Adding interactive overlays to racket plots

2018-01-29 Thread Alex Harsanyi
The racket plot package produces interactive snip% objects which allow zooming of the plot area. While this is a cool and sometimes useful feature, the functionality is hard coded in the plot-snip% class inside the package. I would like to extend the package to allow the user to customize the

Re: [racket-users] Adding interactive overlays to racket plots

2018-01-29 Thread Matthias Felleisen
This is dang cool. Yes please submit a PR. > On Jan 29, 2018, at 6:09 AM, Alex Harsanyi wrote: > > The racket plot package produces interactive snip% objects which allow > zooming of the plot area. While this is a cool and sometimes useful feature, > the