mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 00:16:04 +08:00
Fixed broken renames in qml
This commit is contained in:
parent
59767ec560
commit
8b3f1bacb2
@ -1,5 +1,5 @@
|
|||||||
from UM.Backend.Command import Command
|
from UM.Backend.Command import Command
|
||||||
from UM.plugins.CuraBackendEngine.Commands.TransferVertCommand import TransferVertCommand
|
from UM.plugins.UMBackendEngine.Commands.TransferVertCommand import TransferVertCommand
|
||||||
|
|
||||||
class TransferMeshCommand(Command):
|
class TransferMeshCommand(Command):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from UM.Backend.Command import Command
|
from UM.Backend.Command import Command
|
||||||
from UM.plugins.CuraBackendEngine.Commands.TransferMeshCommand import TransferMeshCommand
|
from UM.plugins.UMBackendEngine.Commands.TransferMeshCommand import TransferMeshCommand
|
||||||
|
|
||||||
class TransferMeshesCommand(Command):
|
class TransferMeshesCommand(Command):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from UM.Backend.Backend import Backend
|
from UM.Backend.Backend import Backend
|
||||||
|
|
||||||
class CuraEngineBackend(Backend):
|
class UMEngineBackend(Backend):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(CuraEngineBackend,self).__init__()
|
super(UMEngineBackend,self).__init__()
|
@ -1,11 +1,11 @@
|
|||||||
#Shoopdawoop
|
#Shoopdawoop
|
||||||
from plugins.CuraEngineBackend import CuraEngineBackend
|
from plugins.UMEngineBackend import UMEngineBackend
|
||||||
|
|
||||||
def getMetaData():
|
def getMetaData():
|
||||||
return { "name": "CuraBackend", "type": "Backend" }
|
return { "name": "UMBackend", "type": "Backend" }
|
||||||
|
|
||||||
def register(app):
|
def register(app):
|
||||||
|
|
||||||
engine = CuraEngineBackend()
|
engine = UMEngineBackend()
|
||||||
app.setBackend(engine)
|
app.setBackend(engine)
|
||||||
#engine.addCommand(TransferMeshCommand())
|
#engine.addCommand(TransferMeshCommand())
|
Loading…
x
Reference in New Issue
Block a user