Skip to content

Commit

Permalink
v0.10.5 bugfix
Browse files Browse the repository at this point in the history
line 1024
type="12" changed to type=12
  • Loading branch information
g4ixt committed Jun 7, 2024
1 parent 623c76b commit 48c0d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QtTinySA.py
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@ def addBandPressed():
title = "New Spot Frequency"
message = "Input the Name for your Spot Frequency"
spotName, ok = QInputDialog.getText(None, title, message, QLineEdit.Normal, "")
bands.insertData(name=spotName, type="12", startF=f'{S1.vline.value():.6f}',
bands.insertData(name=spotName, type=12, startF=f'{S1.vline.value():.6f}',
stopF='', visible=1, colour=colourID('orange')) # preset 12 is Marker (spot frequency).


Expand Down

0 comments on commit 48c0d92

Please sign in to comment.