Comment # 7
on bug 11777
from Pascal Quantin
(In reply to Pascal Quantin from comment #4)
> No need for a pcap.
> This is currently done on purpose, probably due to memory / Qt constraints.
> In FollowStream::addtext():
>
> int char_count = ui->teStreamContent->document()->characterCount();
> if (char_count + text.length() > max_document_length_) {
> text.truncate(max_document_length_ - char_count);
> truncated_ = true;
> }
>
> where
> const int FollowStreamDialog::max_document_length_ = 2 * 1000 * 1000; //
> Just a guess
It looks like I did a mistake in my first attempt and did not select the right
steam. 100MB is definitely too much for Qt...
Even 50MB was still the window (did not test lower values).
You are receiving this mail because:
- You are watching all bug changes.