From f1b08f096c38ee71245467d832d8479a39947ea0 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 10 Jul 2007 15:23:54 +0000 Subject: [PATCH] Corrected readout of UTC for double-click on callsign in Messages window. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@484 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- display.F90 | 3 ++- map65.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/display.F90 b/display.F90 index e78383849..59e1f8ecf 100644 --- a/display.F90 +++ b/display.F90 @@ -118,7 +118,8 @@ subroutine display(nkeep) nc=0 callsign0=' ' do k=1,k3 - out=line3(k)(5:12)//line3(k)(28:31)//line3(k)(35:67)//line3(k)(77:81) + out=line3(k)(5:12)//line3(k)(28:31)//line3(k)(39:43)// & + line3(k)(35:38)//line3(k)(44:67)//line3(k)(77:81) if(out(1:3).ne.' ') then if(out(1:3).eq.cfreq0) then out(1:3)=' ' diff --git a/map65.py b/map65.py index c906f7a74..5ccc7d3b9 100644 --- a/map65.py +++ b/map65.py @@ -188,7 +188,7 @@ def messages(event=NONE): bm.geometry(bm_geom) if g.Win32: bm.iconbitmap("wsjt.ico") iframe_bm1 = Frame(bm, bd=1, relief=SUNKEN) - Label(iframe_bm1,text='Freq DF Pol dB UTC').pack(anchor=W, \ + Label(iframe_bm1,text='Freq DF Pol UTC dB').pack(anchor=W, \ pady=0,side='top') msgtext=Text(iframe_bm1, height=35, width=45, bg="Navy", fg="yellow") msgtext.bind('',dbl_click_msgtext)