Skip to content

Commit 35a26ac

Browse files
committed
send a space after f-keys
1 parent b921ad4 commit 35a26ac

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

not1mm/__main__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3578,6 +3578,9 @@ def process_function_key(self, function_key, rttysendrx=True) -> None:
35783578
function_key : QPushButton
35793579
Function key to process.
35803580
3581+
rttysendrx : bool
3582+
Should a '^r' be appended.
3583+
35813584
Returns
35823585
-------
35833586
None
@@ -3609,8 +3612,10 @@ def process_function_key(self, function_key, rttysendrx=True) -> None:
36093612
if self.cw:
36103613
if self.pref.get("cwtype") == 3 and self.rig_control is not None:
36113614
self.rig_control.sendcw(self.process_macro(function_key.toolTip()))
3615+
self.rig_control.sendcw(" ")
36123616
return
36133617
self.cw.sendcw(self.process_macro(function_key.toolTip()))
3618+
self.cw.sendcw(" ")
36143619
if self.pref.get("cwtype") == 2:
36153620
# I put this back in 'cause no one will know to update winkeyerserial.
36163621
time.sleep(0.2)

0 commit comments

Comments
 (0)