Re: [racket-dev] editor-canvas% not visually distinguished

2011-09-01 Thread Matthew Flatt
The intent is that the 'control-border style for `editor-canvas%' gives it a border like a control. The default mode is suitable for an editor that fills a window. Canvas border styles didn't work on Gtk when the canvas has a scroll bar, though, so I've pushed a repair for that bug. At Thu, 01 Se

[racket-dev] editor-canvas% not visually distinguished

2011-09-01 Thread Marijn
Hi list, on GTK, editor-canvas%es are not visually distinguished, like text-field%s are, to indicate that it is possible to enter text; the following code: #lang racket/gui (define root (new frame% (label "test"))) (new text-field% (parent root) (label "Input: ")) (define text (new text%))