From 4411d9210e84e950793c039b91bbee4a4d158fbd Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Sun, 20 Oct 2019 14:25:38 -0400 Subject: [PATCH] Fixed trailing space on text restore --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 9efb846..7d94050 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -6226,7 +6226,7 @@ void MainWindow::restoreMessage(){ if(m_lastTxMessage.isEmpty()){ return; } - addMessageText(m_lastTxMessage, true); + addMessageText(Varicode::rstrip(m_lastTxMessage), true); } void MainWindow::resetMessageTransmitQueue(){