mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-13 09:47:50 -06:00
Fixed broken renames in qml
This commit is contained in:
parent
59767ec560
commit
8b3f1bacb2
4 changed files with 7 additions and 7 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue