I created a text panel as follows:
uart_panel = ui.Edit(win, '', 15, 135, 675, 500)
uart_panel.readonly = true
uart_panel.font = "Consolas"
uart_panel.fontsize = 10
uart_panel.richtext = false
Appending strings to the panel stops after some hundred lines (around 660 lines but it's not fixed)
with no apparent reason.
I'm using a statement like:
uart_panel:append(data..'\n')
Is there any hard limit to the text size for ui.Edit?
Any other root cause for this problem?