From 31b4d262ed344db1587e666a64f3dba1759d9440 Mon Sep 17 00:00:00 2001 From: "Mark J. Fine" Date: Thu, 22 Dec 2022 14:25:13 -0500 Subject: [PATCH] Fixed typo in set_sensitive() --- nrsc5-dui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nrsc5-dui.py b/nrsc5-dui.py index cfad91b..e763859 100644 --- a/nrsc5-dui.py +++ b/nrsc5-dui.py @@ -312,7 +312,7 @@ class NRSC5_DUI(object): def restart_program(self): python = sys.executable - os.execl(python, python, * sys.argv) + os.execl(python, python, *sys.argv) def confirm_dialog(self, title, message): dialog = Gtk.MessageDialog(parent=self.mainWindow, flags=0, message_type=Gtk.MessageType.WARNING, buttons=Gtk.ButtonsType.YES_NO, text=title) @@ -678,7 +678,7 @@ class NRSC5_DUI(object): # disable the controls self.spinFreq.set_sensitive(False) - self.cbxAspect.ser_sensitive(False) + self.cbxAspect.set_sensitive(False) self.cbxSDRRadio.set_sensitive(False) self.spinGain.set_sensitive(False) self.spinPPM.set_sensitive(False)