Same as previous commit, for the element editor.

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5816 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2019-03-31 13:49:07 +00:00
parent 0528a2526e
commit a7f4be0c12
2 changed files with 15 additions and 7 deletions

View File

@@ -238,11 +238,11 @@ DiagramContext ElementInfoWidget::currentInfo() const
{
QString txt = eipw->text();
//Replace html line feed
txt.replace("&#xa", " "); //hexa
txt.replace("&#10", " "); //decimal
txt.replace("
", " "); //hexa
txt.replace("
", " "); //decimal
//Replace html carriage return
txt.replace("&#xd", " "); //hexa
txt.replace("&#13", " "); //decimal
txt.replace("
", " "); //hexa
txt.replace("
", " "); //decimal
info_.addValue(eipw->key(), txt);
}
}