Hi release team, this patch fixes bug (#191884) in the katepart, which might be a showstopper for kdevelop. It would be cool if you'd apply the patch. Thanks in any case!
Keep up the great work! Greetings, Bernhard
Index: kate/document/katedocument.cpp =================================================================== --- kate/document/katedocument.cpp (Revision 965352) +++ kate/document/katedocument.cpp (Arbeitskopie) @@ -1453,7 +1453,8 @@ QString oldText = this->line(line); - m_undoManager->addUndo (new KateEditRemoveLineUndo(this, line, this->line(line))); + if (editWithUndo) + m_undoManager->addUndo (new KateEditRemoveLineUndo(this, line, this->line(line))); KTextEditor::Range rangeRemoved(line, 0, line, oldText.length());
_______________________________________________ release-team mailing list [email protected] https://mail.kde.org/mailman/listinfo/release-team
