12345678910111213141516171819 |
- from . import SolidView
- from UM.i18n import i18nCatalog
- i18n_catalog = i18nCatalog("cura")
- def getMetaData():
- return {
- "view": {
- "name": i18n_catalog.i18nc("@item:inmenu", "Solid view"),
- "weight": 0,
- "visible": False
- }
- }
- def register(app):
- return { "view": SolidView.SolidView() }
|