mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
Fixed pluginRegistry bug
This commit is contained in:
parent
11ac8e85e8
commit
2edd4da861
3 changed files with 8 additions and 4 deletions
|
@ -6,4 +6,7 @@ class TransferMeshCommand(Command):
|
|||
super(TransferMeshCommand,self).__init__()
|
||||
|
||||
def send(self, mesh_data):
|
||||
vertices = mesh_data.getVerticesList()
|
||||
vertices = mesh_data.getVertices()
|
||||
command = TransferVertCommand(self._socket)
|
||||
for vertex in vertices:
|
||||
command.send(vertex)
|
Loading…
Add table
Add a link
Reference in a new issue