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