- fixed the issue in Milling Plugin that did not automatically set the object combo to the previously selected object

This commit is contained in:
Marius Stanciu
2021-09-01 23:16:17 +03:00
committed by Marius
parent 290647a2be
commit 2e23b8590b
6 changed files with 56 additions and 36 deletions

View File

@@ -108,6 +108,9 @@ class RadioSet(QtWidgets.QWidget):
if option['label'] in options:
option['radio'].setDisabled(val)
def values(self):
return [choice['value'] for choice in self.choices]
class RadioSetDefaults(RadioSet):