From 3978a1b5796838acaf8dc42ae4d1c6be649ac750 Mon Sep 17 00:00:00 2001
From: Steve Brokenshire <sbrokenshire@xestia.co.uk>
Date: Wed, 29 Jun 2016 22:43:02 +0100
Subject: [PATCH] Check for either a space or space and a newline in OutputText

---
 source/common/textprocessing.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 		
-- 
2.39.5