diff --git a/plugins/3DConnexion/NavlibClient.py b/plugins/3DConnexion/NavlibClient.py index 4083e7a74e..329b46a049 100644 --- a/plugins/3DConnexion/NavlibClient.py +++ b/plugins/3DConnexion/NavlibClient.py @@ -1,3 +1,6 @@ +# Copyright (c) 2025 3Dconnexion, UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + from UM.Math.Matrix import Matrix from UM.Math.Vector import Vector from UM.Math.AxisAlignedBox import AxisAlignedBox diff --git a/plugins/3DConnexion/OverlayNode.py b/plugins/3DConnexion/OverlayNode.py index c3fb25f149..f96d9e14c7 100644 --- a/plugins/3DConnexion/OverlayNode.py +++ b/plugins/3DConnexion/OverlayNode.py @@ -1,5 +1,5 @@ -# Copyright (c) 2016 Ultimaker B.V. -# Cura is released under the terms of the AGPLv3 or higher. +# Copyright (c) 2025 3Dconnexion, UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. from UM.Scene.SceneNode import SceneNode from UM.View.GL.OpenGL import OpenGL diff --git a/plugins/3DConnexion/__init__.py b/plugins/3DConnexion/__init__.py index 368580797e..d2a4c0da49 100644 --- a/plugins/3DConnexion/__init__.py +++ b/plugins/3DConnexion/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2025 Ultimaker B.V. +# Copyright (c) 2025 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. from UM.Logger import Logger @@ -18,5 +18,5 @@ def register(app: "Application") -> Dict[str, Any]: from .NavlibClient import NavlibClient return { "view_manipulator": NavlibClient(app.getController().getScene(), app.getRenderer()) } except BaseException as exception: - Logger.warning(f"Unable to load 3DConnexion library: {exception}") + Logger.warning(f"Unable to load 3Dconnexion library: {exception}") return { }