From b229769c4e012be58663a6016218cef5cab07e8f Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Mon, 14 Dec 2015 11:14:14 +0100 Subject: [PATCH] Uranium -> Cura and drop some unused code --- plugins/SolidView/SolidView.py | 6 +----- plugins/SolidView/__init__.py | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/plugins/SolidView/SolidView.py b/plugins/SolidView/SolidView.py index 620031e1f9..988fe20120 100644 --- a/plugins/SolidView/SolidView.py +++ b/plugins/SolidView/SolidView.py @@ -1,5 +1,5 @@ # Copyright (c) 2015 Ultimaker B.V. -# Uranium is released under the terms of the AGPLv3 or higher. +# Cura is released under the terms of the AGPLv3 or higher. from UM.View.View import View from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator @@ -15,14 +15,10 @@ import math ## Standard view for mesh models. class SolidView(View): - #EnabledColor = Color(1.0, 0.79, 0.14, 1.0) - #DisabledColor = Color(0.68, 0.68, 0.68, 1.0) - def __init__(self): super().__init__() Preferences.getInstance().addPreference("view/show_overhang", True) - #Preferences.getInstance().preferenceChanged.connect(self._onPreferenceChanged) self._enabled_shader = None self._disabled_shader = None diff --git a/plugins/SolidView/__init__.py b/plugins/SolidView/__init__.py index 00dc1618fd..2681b2d375 100644 --- a/plugins/SolidView/__init__.py +++ b/plugins/SolidView/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) 2015 Ultimaker B.V. -# Uranium is released under the terms of the AGPLv3 or higher. +# Cura is released under the terms of the AGPLv3 or higher. from . import SolidView