mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 16:31:17 -05:00
Another tweak for extra-long callsigns.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@180 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
3a6e00329f
commit
480260a03c
6
chkmsg.f
6
chkmsg.f
@ -15,7 +15,11 @@
|
|||||||
+ (message(20:22).eq.' OO')) then
|
+ (message(20:22).eq.' OO')) then
|
||||||
cok='OOO'
|
cok='OOO'
|
||||||
flip=-1.0
|
flip=-1.0
|
||||||
message=message(1:i-4)
|
if(message(20:22).eq.' OO') then
|
||||||
|
message=message(1:19)
|
||||||
|
else
|
||||||
|
message=message(1:i-4)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
! if(message(1:3).eq.'ATT') nspecial=1
|
! if(message(1:3).eq.'ATT') nspecial=1
|
||||||
|
6
wsjt.py
6
wsjt.py
@ -1,4 +1,4 @@
|
|||||||
#-------------------------------------------------------------------- WSJT
|
#------------------------------------------------------------------- WSJT
|
||||||
from Tkinter import *
|
from Tkinter import *
|
||||||
from tkFileDialog import *
|
from tkFileDialog import *
|
||||||
import Pmw
|
import Pmw
|
||||||
@ -1392,9 +1392,7 @@ def update():
|
|||||||
nmsg=int(Audio.gcom2.nmsg)
|
nmsg=int(Audio.gcom2.nmsg)
|
||||||
t=g.ftnstr(Audio.gcom2.sending)
|
t=g.ftnstr(Audio.gcom2.sending)
|
||||||
if t[:3]=="CQ ": nsked.set(0)
|
if t[:3]=="CQ ": nsked.set(0)
|
||||||
t="Transmitting: "+t[:nmsg]
|
t="Txing: "+t[:nmsg]
|
||||||
# t="Transmitting: "
|
|
||||||
# t="Txing: "+t[:nmsg]
|
|
||||||
bgcolor='yellow'
|
bgcolor='yellow'
|
||||||
if Audio.gcom2.sendingsh==1: bgcolor='#66FFFF' #Shorthand (lt blue)
|
if Audio.gcom2.sendingsh==1: bgcolor='#66FFFF' #Shorthand (lt blue)
|
||||||
if Audio.gcom2.sendingsh==-1: bgcolor='red' #Plain Text
|
if Audio.gcom2.sendingsh==-1: bgcolor='red' #Plain Text
|
||||||
|
Loading…
Reference in New Issue
Block a user