adjust the variables editor so that it does

not do word wrapping.

This avoids the performance problem mentioned
in PR 12633
This commit is contained in:
Robby Findler 2012-08-15 13:43:14 -05:00
parent b95b1b9366
commit 5e839664c4
2 changed files with 5 additions and 1 deletions

View File

@ -1337,7 +1337,7 @@
(when (and paragraph expr)
(send (get-current-tab) move-to-frame paragraph))]
[else (void)]))))))
(set! variables-text (new text% [auto-wrap #t]))
(set! variables-text (new text% [auto-wrap #f]))
(let ([stack-frames-panel (make-object vertical-panel% stack-view-panel)])
(new message% [parent stack-frames-panel] [label "Stack"])
(new editor-canvas% [parent stack-frames-panel] [editor stack-frames] [style '(no-hscroll)]))

View File

@ -9,6 +9,10 @@
. Check Syntax now shows the blue boxes from the
documentation in the definitions window
. Change the "Variables" pane of the debugger so that it does not do
word-wrapping (this avoids some performance problems when very
large values are rendered there)
------------------------------
Version 5.3
------------------------------