Pascal Quantin
changed
bug 11777
Comment # 4
on bug 11777
from Pascal Quantin
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
You are receiving this mail because:
- You are watching all bug changes.