diff --git a/docs/changes.md b/docs/changes.md index 41007970..42cc52d8 100644 --- a/docs/changes.md +++ b/docs/changes.md @@ -131,21 +131,20 @@ tests/snippets/test_compare_fit1.py ### Broken Examples Examples that are not fully functional and need some fixing: ``` +earth_model.py (wrong colormapping?) markpoint.py (misplaced leader indicator) cut_and_cap.py (incomplete capping) gyroscope1.py (broken physics) -mousehover1.py (long indicator) tests/issues/discussion_800.py (incomplete capping of tube) -examples/volumetric/earth_model.py (overburden wron color) ``` #### Broken Projects umap_viewer3d trackviewer (some problems with removing a track, and z spacing) -./clone_viewer3d.py and ~/Projects/umap_viewer3d +./clone_viewer3d.py and +~/Projects/umap_viewer3d [vedo.plotter] INFO: object 'FlagPole' was manually moved. Updated to its current position. [vedo.plotter] INFO: object 'Text3D' was manually moved. Updated to its current position. -napari-vedo-bridge interactor frozen rio_organoid too slow?? diff --git a/tests/pipeline.txt b/tests/pipeline.txt index 418d3635..2164ad53 100644 --- a/tests/pipeline.txt +++ b/tests/pipeline.txt @@ -123,12 +123,6 @@ cd ~/Projects/napari-vedo-bridge python $VEDODIR/examples/other/napari1.py # then open plugins ... conda deactivate ################ -cd ~/Projects/server/welleng - git pull - pip install -e . - cd examples - python -################ cd ~/Projects/server/brainrender/examples python cell_density.py python streamlines.py diff --git a/vedo/plotter.py b/vedo/plotter.py index fac109cd..5ceede1f 100644 --- a/vedo/plotter.py +++ b/vedo/plotter.py @@ -1316,10 +1316,10 @@ def check_actors_trasform(self, at=None): if M and not M.IsIdentity(): try: a.retrieve_object().apply_transform_from_actor() - vedo.logger.info( - f"object '{a.retrieve_object().name}' " - "was manually moved. Updated to its current position." - ) + # vedo.logger.info( + # f"object '{a.retrieve_object().name}' " + # "was manually moved. Updated to its current position." + # ) except AttributeError: pass return self @@ -3403,6 +3403,8 @@ def show( # Set the interaction style if mode is not None: self.user_mode(mode) + if self.qt_widget and mode is None: + self.user_mode(0) if screenshot: self.screenshot(screenshot) diff --git a/vedo/version.py b/vedo/version.py index 3ec9b2d3..2c4c22e7 100644 --- a/vedo/version.py +++ b/vedo/version.py @@ -1 +1 @@ -_version = '2024.5.0+dev37' +_version = '2024.5.1'