red / red

Red is a next-generation programming language strongly inspired by Rebol, but with a broader field of usage thanks to its native-code compiler, from system programming to high-level scripting and cross-platform reactive GUI, while providing modern support for concurrency, all in a zero-install, zero-config, single ~1MB file!
http://red-lang.org
Boost Software License 1.0
5.5k stars 412 forks source link

No vertical scrollbar on area #1797

Closed iArnold closed 8 years ago

iArnold commented 8 years ago
multi-line-text: copy {
Hi

This

is

multiline

input
}
multi-line-text: replace/all multi-line-text "^/" "^M^/" ;replace LF by CRLF

; View ------------------
view [
    preview-area: area 200x200
    btn-fill: button "fill" [preview-area/text: multi-line-text]
    btn-fill: button "fill EXPAND" [preview-area/text: append preview-area/text multi-line-text]
    btn-empty: button "empty" [preview-area/text: copy "" ]
]
iArnold commented 8 years ago

This bug is also responsible for not being able to copy paste larger texts to the livecode area?