Skip to content

Commit

Permalink
fix #609
Browse files Browse the repository at this point in the history
  • Loading branch information
andynoack committed Jan 18, 2019
1 parent 9f41719 commit 0f5cebd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/urh/controller/dialogs/ProjectDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ def on_btn_select_path_clicked(self):
if directory:
self.set_path(directory)

@pyqtSlot(str, dict)
def set_recording_params_from_spectrum_analyzer_link(self, dev_name, args: dict):
@pyqtSlot(dict)
def set_recording_params_from_spectrum_analyzer_link(self, args: dict):
self.ui.spinBoxFreq.setValue(args["frequency"])
self.ui.spinBoxSampleRate.setValue(args["sample_rate"])
self.ui.spinBoxBandwidth.setValue(args["bandwidth"])
Expand Down

0 comments on commit 0f5cebd

Please sign in to comment.