Skip to content

Commit

Permalink
Changed NavLib to run in single threaded mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Patryk Skowroński committed Nov 6, 2024
1 parent 036a69c commit 939fcb0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cura/NavlibClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class NavlibClient(pynav.NavlibNavigationModel):

def __init__(self, scene, renderer) -> None:
super().__init__(True, pynav.NavlibOptions.RowMajorOrder)
super().__init__(False, pynav.NavlibOptions.RowMajorOrder)
self._scene = scene
self._renderer = renderer
self._pointer_pick = None
Expand Down
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -407,4 +407,7 @@ pywin32-ctypes==0.2.0; \
charset-normalizer==2.1.0; \
--hash=sha256:5189b6f22b01957427f35b6a08d9a0bc45b46d3788ef5a92e978433c7a35f8a5

pynavlib==0.9.1;
pynavlib==0.9.2; \
sys_platform != "linux" \
--hash=sha256:98434eff8ad122b487aea2213f0c690b2c8080e5b9d7c52c0a39702b4a1a37d9 \
--hash=sha256:fdfcd2cfc9c3090d7b322ccd307ab8c7fa6cf46e627c5c376c672042312a40e9

0 comments on commit 939fcb0

Please sign in to comment.