mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Add doc for MachineSettingsManager
This commit is contained in:
parent
397add861f
commit
82471a0e39
1 changed files with 7 additions and 2 deletions
|
@ -1,11 +1,16 @@
|
|||
# Copyright (c) 2019 Ultimaker B.V.
|
||||
# Cura is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
from typing import Any, Dict, Optional, TYPE_CHECKING
|
||||
from typing import Optional
|
||||
|
||||
from PyQt5.QtCore import Qt, QObject, pyqtSlot
|
||||
from PyQt5.QtCore import QObject, pyqtSlot
|
||||
|
||||
from UM.i18n import i18nCatalog
|
||||
|
||||
|
||||
#
|
||||
# This manager provides (convenience) functions to the Machine Settings Dialog QML to update certain machine settings.
|
||||
#
|
||||
class MachineSettingsManager(QObject):
|
||||
|
||||
def __init__(self, parent: Optional["QObject"] = None) -> None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue