From 415019d61f5c31e1a1efe86c828fb735b0836867 Mon Sep 17 00:00:00 2001 From: Alexander Plavin Date: Sat, 18 Jan 2025 14:16:19 -0500 Subject: [PATCH] allow setting inspectable in the theme --- MakieCore/src/basic_plots.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MakieCore/src/basic_plots.jl b/MakieCore/src/basic_plots.jl index fe973814e00..90a24ed69d3 100644 --- a/MakieCore/src/basic_plots.jl +++ b/MakieCore/src/basic_plots.jl @@ -64,7 +64,7 @@ function mixin_generic_plot_attributes() "Adjusts whether the plot is rendered with ssao (screen space ambient occlusion). Note that this only makes sense in 3D plots and is only applicable with `fxaa = true`." ssao = false "sets whether this plot should be seen by `DataInspector`." - inspectable = true + inspectable = @inherit inspectable "adjusts the depth value of a plot after all other transformations, i.e. in clip space, where `0 <= depth <= 1`. This only applies to GLMakie and WGLMakie and can be used to adjust render order (like a tunable overdraw)." depth_shift = 0.0f0 "sets the transformation space for box encompassing the plot. See `Makie.spaces()` for possible inputs."