mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Some strings already have eoln
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32632 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
da970d5269
commit
aa77492617
@ -56,7 +56,7 @@ void GuiProgressView::appendText(QString const & text)
|
||||
if (text.isEmpty())
|
||||
return;
|
||||
QString time = QTime::currentTime().toString();
|
||||
text_edit.insertPlainText(time + ": " + text + "\n");
|
||||
text_edit.insertPlainText(time + ": " + text.trimmed() + "\n");
|
||||
text_edit.ensureCursorVisible();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user