mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-20 05:07:50 -06:00
Initial version of the integration
This commit is contained in:
parent
485b94fe06
commit
c563c0a2ca
2 changed files with 211 additions and 0 deletions
|
@ -130,6 +130,8 @@ from .Machines.Models.IntentSelectionModel import IntentSelectionModel
|
|||
from .PrintOrderManager import PrintOrderManager
|
||||
from .SingleInstance import SingleInstance
|
||||
|
||||
from .NavlibClient import NavlibClient
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from UM.Settings.EmptyInstanceContainer import EmptyInstanceContainer
|
||||
|
||||
|
@ -1037,6 +1039,10 @@ class CuraApplication(QtApplication):
|
|||
controller.setCameraTool("CameraTool")
|
||||
controller.setSelectionTool("SelectionTool")
|
||||
|
||||
self._navlib_client = NavlibClient(controller.getScene(), self.getRenderer())
|
||||
self._navlib_client.put_profile_hint("UltiMaker Cura")
|
||||
self._navlib_client.enable_navigation(True)
|
||||
|
||||
# Hide the splash screen
|
||||
self.closeSplash()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue