From f378ed7a4f45a373e2e487062d06ab255289c2ff Mon Sep 17 00:00:00 2001 From: Chris Meyer <34664+cmeyer@users.noreply.github.com> Date: Fri, 19 Jul 2024 08:54:44 -0700 Subject: [PATCH] Re-enable auto exclusive to fix deselectable radio button issue (nionui 76). --- nion/ui/PyQtProxy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nion/ui/PyQtProxy.py b/nion/ui/PyQtProxy.py index 43fa0cc..449bbd6 100644 --- a/nion/ui/PyQtProxy.py +++ b/nion/ui/PyQtProxy.py @@ -446,7 +446,6 @@ class PyRadioButton(QtWidgets.QRadioButton): def __init__(self) -> None: super().__init__() self.object = None - self.setAutoExclusive(False) self.clicked.connect(self.__clicked) def __clicked(self):