One liner...if log window is visible do not overwrite any information in the 
log window.
So if you start your log early to type in some stuff it doesn't get blown away 
from the auto log attempt.
de Mike W9MDB
Index: logqso.cpp
===================================================================
--- logqso.cpp  (revision 7104)
+++ logqso.cpp  (working copy)
@@ -53,6 +53,7 @@
                         Radio::Frequency dialFreq, QString myCall, QString 
myGrid,
                         bool noSuffix, bool toRTTY, bool dBtoComments)
 {
+  if (!isHidden()) return;
   ui->call->setText(hisCall);
   ui->grid->setText(hisGrid);
   ui->name->setText("");
Index: mainwindow.cpp
===================================================================
--- mainwindow.cpp      (revision 7104)
+++ mainwindow.cpp      (working copy)
@@ -143,7 +143,7 @@
   bool message_is_73 (int type, QStringList const& msg_parts)
   {
     return type >= 0
-      && ((type < 6 && msg_parts.contains ("73"))
+      && ((type < 6 && (msg_parts.contains ("73") || msg_parts.contains 
("RRR") ))
           || (type == 6 && !msg_parts.filter ("73").isEmpty ()));
   }
 
------------------------------------------------------------------------------
_______________________________________________
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to