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
This commit is contained in:
Joe Taylor 2008-09-18 18:55:29 +00:00
parent 571e2b7b2f
commit 3a6a0b6411

View File

@ -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:])