| Summary: | Outgoing messages history not updated on multiline pastes | ||
|---|---|---|---|
| Product: | [Applications] konversation | Reporter: | Philippe Cloutier <chealer> |
| Component: | general | Assignee: | Konversation Bugs <konversation-bugs-null> |
| Status: | VERIFIED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Philippe Cloutier
2006-10-27 04:08:31 UTC
SVN commit 599506 by hein:
Append the text actually sent as the result of a paste edit to the
input history, rather than the input line contents.
BUG:136372
M +1 -1 ircinput.cpp
--- trunk/extragear/network/konversation/src/ircinput.cpp #599505:599506
@@ -447,7 +447,7 @@
// signal pasted text
emit textPasted(pasteText);
// remember old line, in case the user does not paste eventually
- addHistory(text());
+ addHistory(pasteText);
// delete input text
clear();
}
|