From ae6dccc1835eda9371f71933ad35ffd720f70b9a Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Sun, 2 Jun 2019 21:34:39 -0400 Subject: [PATCH] Log RX text should append instead of overwrite --- logqso.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/logqso.cpp b/logqso.cpp index 2239793..ae36879 100644 --- a/logqso.cpp +++ b/logqso.cpp @@ -46,11 +46,14 @@ bool LogQSO::acceptText(QString text){ } auto l = static_cast(w); - if(!l->text().isEmpty()){ - return false; + if(l->text().isEmpty()){ + // set + l->setText(text); + } else { + // append + l->setText(QString("%1 %2").arg(l->text()).arg(text)); } - l->setText(text); return true; }