From cef6da99d4e167c782c4e95e8e3c9968144349be Mon Sep 17 00:00:00 2001 From: Jaakko Ruohio Date: Thu, 30 May 2024 23:44:25 +0200 Subject: [PATCH 1/2] wireframe strokewidth should be linewidth --- src/interaction/inspector.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interaction/inspector.jl b/src/interaction/inspector.jl index 0c66f001b00..15213c92062 100644 --- a/src/interaction/inspector.jl +++ b/src/interaction/inspector.jl @@ -824,7 +824,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[])) From 6fd0e9b378f32107fe73dd4f3cf8c6fe9ef099e8 Mon Sep 17 00:00:00 2001 From: Jaakko Ruohio Date: Sun, 30 Jun 2024 12:47:36 +0300 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cf3986ce6c..c5c559cb2db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## [Unreleased] - 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). ## [0.21.2] - 2024-05-22