Bug 52521

Summary: new output inserted at wrong location
Product: [Applications] konsole Reporter: Marc Boucher <marc>
Component: kwritedAssignee: Konsole Developer <konsole-devel>
Status: RESOLVED FIXED    
Severity: normal CC: mail
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Mandrake RPMs   
OS: Linux   
Latest Commit: Version Fixed In:

Description Marc Boucher 2003-01-02 16:31:01 UTC
Version:            (using KDE KDE 3.0.99)
Installed from:    Mandrake RPMs
Compiler:          gcc version 3.2 (Mandrake Linux 9.1 3.2-4mdk) 
OS:          Linux

by making the pty executable, I use kwrited in conjunction with "biff" and nmh's "rcvtty -biff" so that a new line appears for each incoming mail message.
this works well for a certain time but after a while new lines are inserted in the middle of previous ones rather than appended at the end of the history as one would expect.
Comment 1 Stephan Binner 2003-01-02 17:42:51 UTC
*** Bug 52522 has been marked as a duplicate of this bug. ***
Comment 2 Stephan Binner 2003-04-13 20:10:11 UTC
Mandrake? Sounds like bug 53418. 
Comment 3 Stephan Binner 2003-12-18 23:35:20 UTC
No answer. See http://qa.mandrakesoft.com/show_bug.cgi?id=3747
Comment 4 George Kiagiadakis 2008-10-21 15:38:34 UTC
Interesting enough to see that this bug was reproducable until some commits ago :D
The bug is probably a QTextEdit bug. kwrited used to use a QTextEdit to show new messages, using QTextEdit::insertPlainText() and its older equivalents, which in fact insert the text at the current text cursor position. The text cursor was not visible, as the QTextEdit was in readonly mode, but if the user clicked somewhere, the position was updated internally and new messages were inserted at that place.

This is fixed now, kwrited no longer uses a QTextEdit. See http://websvn.kde.org/?view=rev&revision=874385