I'm using a PyQt QTextBrowser widget that inherits from QTextEdit. I'm appending text to it as part of a display of logging information. The logging may go on for weeks.
What is the depth of the buffer that holds the text? Asked another way, how much text can I append and still have the user be able to scroll back to with the scroll bars?
Is this setting configurable? Could it eventually use all my system's ram?
Thanks.