diff --git a/CHANGELOG.md b/CHANGELOG.md index eb3b938e8f6..771af0924a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - Fix stack overflows when using `markerspace = :data` with `scatter` [#3960](https://github.com/MakieOrg/Makie.jl/issues/3960). - CairoMakie: Fix broken SVGs when using non-interpolated image primitives, for example Colorbars, with recent Cairo versions [#3967](https://github.com/MakieOrg/Makie.jl/pull/3967). - CairoMakie: Add argument `pdf_version` to restrict the PDF version when saving a figure as a PDF [#3845](https://github.com/MakieOrg/Makie.jl/pull/3845). +- Fix DataInspector using invalid attribute strokewidth for plot type Wireframe [#3917](https://github.com/MakieOrg/Makie.jl/pull/3917). - CairoMakie: Fix incorrect scaling factor for SVGs with Cairo_jll 1.18 [#3964](https://github.com/MakieOrg/Makie.jl/pull/3964). - Fixed use of Textbox from Bonito [#3924](https://github.com/MakieOrg/Makie.jl/pull/3924) diff --git a/src/interaction/inspector.jl b/src/interaction/inspector.jl index 0331e39eb07..58f18bbc36b 100644 --- a/src/interaction/inspector.jl +++ b/src/interaction/inspector.jl @@ -827,7 +827,7 @@ function show_data(inspector::DataInspector, plot::BarPlot, idx) clear_temporary_plots!(inspector, plot) p = wireframe!( scene, bbox, model = model, color = a.indicator_color, - strokewidth = a.indicator_linewidth, linestyle = a.indicator_linestyle, + linewidth = a.indicator_linewidth, linestyle = a.indicator_linestyle, visible = a.indicator_visible, inspectable = false ) translate!(p, Vec3f(0, 0, a.depth[]))