Fixed tabbing on the F1 Help screen.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@279 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2006-09-06 20:28:14 +00:00
parent d594fcfe1e
commit 82966626ad

59
wsjt.py
View File

@ -556,6 +556,7 @@ def ModeJT65():
graph2.configure(bg='#66FFFF') graph2.configure(bg='#66FFFF')
itol=5 itol=5
inctol() inctol()
nfreeze.set(0)
ntx.set(1) ntx.set(1)
GenStdMsgs() GenStdMsgs()
erase() erase()
@ -673,40 +674,40 @@ def shortcuts(event=NONE):
scwid.geometry(msgpos()) scwid.geometry(msgpos())
if g.Win32: scwid.iconbitmap("wsjt.ico") if g.Win32: scwid.iconbitmap("wsjt.ico")
t=""" t="""
F1 List keyboard shortcuts F1 List keyboard shortcuts
Shift-F1 List special mouse commands Shift-F1 List special mouse commands
CTRL-F1 About WSJT CTRL-F1 About WSJT
F2 Options F2 Options
F3 Tx Mute F3 Tx Mute
F4 Clear "To Radio" F4 Clear "To Radio"
F5 What message to send? F5 What message to send?
F6 Open next file in directory F6 Open next file in directory
Shift-F6 Decode all wave files in directory Shift-F6 Decode all wave files in directory
F7 Set FSK441 mode F7 Set FSK441 mode
Shift-F7 Set JT6M mode Shift-F7 Set JT6M mode
F8 Set JT65A mode F8 Set JT65A mode
Shift-F8 Set JT65B mode Shift-F8 Set JT65B mode
CTRL-F8 Set JT65C mode CTRL-F8 Set JT65C mode
Shift-CTRL-F8 Set CW mode Shift-CTRL-F8 Set CW mode
F10 Toggle focus between WSJT screens F10 Toggle focus between WSJT screens
Alt-1 to Alt-6 Tx1 to Tx6 Alt-1 to Alt-6 Tx1 to Tx6
Alt-A Toggle Auto On/Off Alt-A Toggle Auto On/Off
Alt-D Decode Alt-D Decode
Alt-E Erase Alt-E Erase
Alt-F Toggle Freeze Alt-F Toggle Freeze
Alt-G Generate Standard Messages Alt-G Generate Standard Messages
Alt-I Include Alt-I Include
Alt-L Lookup Alt-L Lookup
CTRL-L Lookup, then Generate Standard Messages CTRL-L Lookup, then Generate Standard Messages
Alt-M Monitor Alt-M Monitor
Alt-O Tx Stop Alt-O Tx Stop
Alt-P Play Alt-P Play
Alt-Q Log QSO Alt-Q Log QSO
Alt-S Stop Monitoring or Decoding Alt-S Stop Monitoring or Decoding
Alt-V Save Last Alt-V Save Last
Alt-X Exclude Alt-X Exclude
Alt-Z Toggle Zap Alt-Z Toggle Zap
Right/Left Arrow Increase/decrease Freeze DF Right/Left Arrow Increase/decrease Freeze DF
""" """
Label(scwid,text=t,justify=LEFT).pack(padx=20) Label(scwid,text=t,justify=LEFT).pack(padx=20)
scwid.focus_set() scwid.focus_set()