mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 05:39:37 +08:00

This tool is deemed Cura-specific, so it is moved to Cura. This prevents it from being included in other Uranium applications.
19 lines
432 B
Python
19 lines
432 B
Python
# Copyright (c) 2015 Ultimaker B.V.
|
|
# Uranium is released under the terms of the AGPLv3 or higher.
|
|
|
|
from UM.Tool import Tool
|
|
|
|
from . import PerObjectSettingsModel
|
|
|
|
class PerObjectSettingsTool(Tool):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
self.setExposedProperties("Model")
|
|
|
|
def event(self, event):
|
|
return False
|
|
|
|
def getModel(self):
|
|
return PerObjectSettingsModel.PerObjectSettingsModel()
|