Skip to content

Commit 1dc4b7a

Browse files
dependabot[bot]pyansys-ci-botAlejandroFernandezLuces
authored
build(deps): bump ansys-tools-visualization-interface from 0.11.0 to 0.12.0 in the general-dependencies group (#1167)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Co-authored-by: Alex Fernandez <21alex295@gmail.com> Co-authored-by: Alex Fernandez Luces <alex.fernandezluces@ansys.com>
1 parent 7247a6f commit 1dc4b7a

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Build(deps): bump ansys-tools-visualization-interface from 0.11.0 to 0.12.0 in the general-dependencies group

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pygeometry = [
3737
"ansys-geometry-core>=0.7.6,<1",
3838
]
3939
tests = [
40-
"ansys-tools-visualization-interface==0.11.0",
40+
"ansys-tools-visualization-interface==0.12.1",
4141
"pytest==8.4.2",
4242
"pytest-cov==7.0.0",
4343
"pytest-pyvista==0.2.0",
@@ -46,7 +46,7 @@ tests = [
4646
]
4747
doc = [
4848
"ansys-sphinx-theme[autoapi]==1.6.1",
49-
"ansys-tools-visualization-interface==0.11.0",
49+
"ansys-tools-visualization-interface==0.12.1",
5050
"joblib==1.5.2",
5151
"jupyter-sphinx==0.5.3",
5252
"numpydoc==1.9.0",

src/ansys/meshing/prime/graphics/widgets/hide_picked.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __init__(self, prime_plotter: "PrimePlotter") -> None:
4646
"""Initialize the widget."""
4747
super().__init__(prime_plotter._backend._pl.scene)
4848
self.prime_plotter = prime_plotter
49-
self._picked_dict = self.prime_plotter._backend._picked_dict
49+
self._picked_dict = self.prime_plotter._backend._custom_picker._picked_dict
5050
self._object_actors_map = self.prime_plotter._backend._object_to_actors_map
5151
self._button = self.prime_plotter._backend._pl.scene.add_checkbox_button_widget(
5252
self.callback,

src/ansys/meshing/prime/graphics/widgets/picked_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __init__(self, prime_plotter: "PrimePlotter") -> None:
4747
"""Initialize widget."""
4848
super().__init__(prime_plotter._backend._pl.scene)
4949
self.prime_plotter = prime_plotter
50-
self._picked_dict = self.prime_plotter._backend._picked_dict
50+
self._picked_dict = self.prime_plotter._backend._custom_picker._picked_dict
5151
self._object_actors_map = self.prime_plotter._backend._object_to_actors_map
5252
self._button = self.prime_plotter._backend._pl.scene.add_checkbox_button_widget(
5353
self.callback,

0 commit comments

Comments
 (0)