From 78d94d9306681ed4e6608c0584eed1fd21191f80 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 26 Oct 2007 14:17:08 +0000 Subject: [PATCH] Corrected selection of ntx=1 or ntx=2 on mouse-selected callsign. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@568 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- map65.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map65.py b/map65.py index 1043872fb..6cf8d1c52 100644 --- a/map65.py +++ b/map65.py @@ -311,7 +311,7 @@ def dbl_click_call(t,t1,rpt,nbox,event): tx5.delete(0,END) tx5.insert(0,t2+"73") i3=t[:i1].strip().rfind(' ')+1 - if t[i3:i1].strip() == 'CQ': + if t[i3:i1].strip() == 'CQ' or nbox >= 2: ntx.set(1) else: ntx.set(2)