mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-30 05:12:26 -04:00
Corrected switch-overs between normal transmissions and test files.
Highlight test-file transmissions in pink. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@159 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
91014b3800
commit
4382881bf1
5
wsjt.py
5
wsjt.py
@ -1,4 +1,4 @@
|
|||||||
#------------------------------------------------------------------ WSJT
|
#------------------------------------------------------------------- WSJT
|
||||||
from Tkinter import *
|
from Tkinter import *
|
||||||
from tkFileDialog import *
|
from tkFileDialog import *
|
||||||
import Pmw
|
import Pmw
|
||||||
@ -1396,8 +1396,9 @@ def update():
|
|||||||
# t="Transmitting: "
|
# t="Transmitting: "
|
||||||
# t="Txing: "+t[:nmsg]
|
# t="Txing: "+t[:nmsg]
|
||||||
bgcolor='yellow'
|
bgcolor='yellow'
|
||||||
if Audio.gcom2.sendingsh==1: bgcolor='#66FFFF' #Shorthand
|
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
|
||||||
|
if Audio.gcom2.sendingsh==2: bgcolor='pink' #Test file
|
||||||
if txsnrdb<90.0: bgcolor='orange' #Simulation mode
|
if txsnrdb<90.0: bgcolor='orange' #Simulation mode
|
||||||
if Audio.gcom2.ntxnow==1: tx1.configure(bg=bgcolor)
|
if Audio.gcom2.ntxnow==1: tx1.configure(bg=bgcolor)
|
||||||
elif Audio.gcom2.ntxnow==2: tx2.configure(bg=bgcolor)
|
elif Audio.gcom2.ntxnow==2: tx2.configure(bg=bgcolor)
|
||||||
|
@ -80,6 +80,8 @@ subroutine wsjtgen
|
|||||||
do i=nwave,NTXMAX
|
do i=nwave,NTXMAX
|
||||||
iwave(i)=0
|
iwave(i)=0
|
||||||
enddo
|
enddo
|
||||||
|
sending=txmsg
|
||||||
|
sendingsh=2
|
||||||
go to 999
|
go to 999
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user