From: Steve Brokenshire Date: Wed, 29 Jun 2016 21:43:02 +0000 (+0100) Subject: Check for either a space or space and a newline in OutputText X-Git-Tag: release-0.14~38 X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=commitdiff_plain;h=3978a1b5796838acaf8dc42ae4d1c6be649ac750 Check for either a space or space and a newline in OutputText --- diff --git a/source/common/textprocessing.cpp b/source/common/textprocessing.cpp index b73252d..2a61591 100644 --- a/source/common/textprocessing.cpp +++ b/source/common/textprocessing.cpp @@ -209,7 +209,7 @@ wxString OutputText(wxString *TextInput){ } - if (OutputLine != " "){ + if (OutputLine != " " && OutputLine != " \n"){ OutputTextData += OutputLine;