Skip to content

Commit

Permalink
GUI: suppress the SNR update info, closes #29
Browse files Browse the repository at this point in the history
  • Loading branch information
MLsmd committed Feb 22, 2018
1 parent f117e0b commit fa166fd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion apps/DABstep
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,6 @@ class DABstep(QtGui.QMainWindow, user_frontend.Ui_MainWindow):
def adjust_audio_sampling_rate(self):
self.timer_audio_sampling_rate.stop()
new_sampling_rate = self.my_receiver.get_sample_rate()
print "key adjust"
if new_sampling_rate != self.audio_bit_rate and new_sampling_rate != -1:
self.audio_bit_rate = new_sampling_rate
self.statusBar.showMessage("Adjusting audio sampling rate to " + str(new_sampling_rate))
Expand Down
1 change: 0 additions & 1 deletion python/GUI/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,6 @@ def stop_audio(self):
def adjust_audio_sampling_rate(self):
self.timer_audio_sampling_rate.stop()
new_sampling_rate = self.my_receiver.get_sample_rate()
print "key adjust"
if new_sampling_rate != self.audio_bit_rate and new_sampling_rate != -1:
self.audio_bit_rate = new_sampling_rate
self.statusBar.showMessage("Adjusting audio sampling rate to " + str(new_sampling_rate))
Expand Down

0 comments on commit fa166fd

Please sign in to comment.