mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Completed configuration UI to export PCB file
CURA-11561
This commit is contained in:
parent
b5b0575baf
commit
2aef33f521
6 changed files with 80 additions and 38 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue