From 3a6a0b641109882d16473401140dba5aa08a2752 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 18 Sep 2008 18:55:29 +0000 Subject: [PATCH] Flag tx6 message longer than 13 chars (unless it's a CQ). git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@1028 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- map65.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/map65.py b/map65.py index 51302d7b5..8322f1673 100644 --- a/map65.py +++ b/map65.py @@ -1089,6 +1089,9 @@ def update(): tx4.configure(bg='white') tx5.configure(bg='white') tx6.configure(bg='white') + if tx6.get()[:3] != 'CQ ' and len(tx6.get())>13: + tx6.configure(bg='pink') + if tx6.get()[:1]=='#': try: txsnrdb=float(tx6.get()[1:])