NiGui icon indicating copy to clipboard operation
NiGui copied to clipboard

`TextArea` cannot `addText` if `TextArea` is already visibly filled

Open theAkito opened this issue 1 year ago • 0 comments

  procProcess(filePaths).apply(
    proc (x: string) =
      textArea.addText(x)
      textArea.addText(longLineBreak)
  )

Actions like these only work, if the TextArea is not "full" from the user's perspective. If the whole area is "filled" with characters, then no additional text will be appended, to be viewable by scrolling. Appending text only works as long as there is still space in the TextArea.

It's not like #89, though. The first time something is added, the text can make the TextArea scrollable and therefore add text beyond the visible area. However, if you then try to append further text, it simply won't happen.

Platform: Windows

theAkito avatar Jul 31 '22 23:07 theAkito