Completed configuration UI to export PCB file

CURA-11561
This commit is contained in:
Erwan MATHIEU 2024-01-30 14:35:55 +01:00
parent b5b0575baf
commit 2aef33f521
6 changed files with 80 additions and 38 deletions

View file

@ -8,12 +8,12 @@ from UM.Qt.ListModel import ListModel
from UM.Logger import Logger
class SettingsExport():
class SettingsExport(QObject):
def __init__(self):
def __init__(self, name, value):
super().__init__()
self._name = "Generate Support"
self._value = "Enabled"
self._name = name
self._value = value
@pyqtProperty(str, constant=True)
def name(self):