mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Renamed Manager to RestartManager
Contributes to: CURA-8587
This commit is contained in:
parent
27cb1d2d9f
commit
fd508342fe
3 changed files with 12 additions and 8 deletions
|
@ -13,7 +13,7 @@ from UM.PluginRegistry import PluginRegistry # To find out where we are stored
|
|||
|
||||
from .RemotePackageList import RemotePackageList # To register this type with QML.
|
||||
from .LocalPackageList import LocalPackageList # To register this type with QML.
|
||||
from .Manager import Manager # To register this type with QML.
|
||||
from .RestartManager import RestartManager # To register this type with QML.
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from PyQt5.QtCore import QObject
|
||||
|
@ -31,7 +31,7 @@ class Marketplace(Extension):
|
|||
|
||||
qmlRegisterType(RemotePackageList, "Marketplace", 1, 0, "RemotePackageList")
|
||||
qmlRegisterType(LocalPackageList, "Marketplace", 1, 0, "LocalPackageList")
|
||||
qmlRegisterType(Manager, "Marketplace", 1, 0, "Manager")
|
||||
qmlRegisterType(RestartManager, "Marketplace", 1, 0, "RestartManager")
|
||||
|
||||
@pyqtSlot()
|
||||
def show(self) -> None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue