mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 21:59:37 +08:00
Rename to be consistent with other plugins
T466
This commit is contained in:
parent
9120a33602
commit
ec12b901d1
@ -24,9 +24,9 @@ import numpy
|
||||
import math
|
||||
|
||||
|
||||
class GCODEReader(MeshReader):
|
||||
class GCodeReader(MeshReader):
|
||||
def __init__(self):
|
||||
super(GCODEReader, self).__init__()
|
||||
super(GCodeReader, self).__init__()
|
||||
self._supported_extensions = [".gcode", ".g"]
|
||||
Application.getInstance().hideMessageSignal.connect(self.onHideMessage)
|
||||
self.cancelled = False
|
@ -2,7 +2,7 @@
|
||||
# Uranium is released under the terms of the AGPLv3 or higher.
|
||||
|
||||
#Shoopdawoop
|
||||
from . import GCODEReader
|
||||
from . import GCodeReader
|
||||
|
||||
from UM.i18n import i18nCatalog
|
||||
i18n_catalog = i18nCatalog("uranium")
|
||||
@ -29,4 +29,4 @@ def getMetaData():
|
||||
}
|
||||
|
||||
def register(app):
|
||||
return { "mesh_reader": GCODEReader.GCODEReader() }
|
||||
return { "mesh_reader": GCodeReader.GCodeReader() }
|
Loading…
x
Reference in New Issue
Block a user