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:
parent
b95b1b9366
commit
5e839664c4
|
@ -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)]))
|
||||
|
|
|
@ -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
|
||||
------------------------------
|
||||
|
|
Loading…
Reference in New Issue
Block a user