Skip to content

Commit

Permalink
don't default transformation through generic_plot_attributes()
Browse files Browse the repository at this point in the history
this is handled in plot construction
  • Loading branch information
ffreyer committed Feb 14, 2025
1 parent c203b2f commit 29d9be9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions MakieCore/src/basic_plots.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ end

function generic_plot_attributes(attr)
return (
transformation = attr[:transformation],
model = attr[:model],
transformation = automatic,
model = automatic,
visible = attr[:visible],
transparency = attr[:transparency],
overdraw = attr[:overdraw],
Expand All @@ -46,7 +46,6 @@ function generic_plot_attributes(attr)
inspector_clear = attr[:inspector_clear],
inspector_hover = attr[:inspector_hover],
clip_planes = attr[:clip_planes]

)
end

Expand Down

0 comments on commit 29d9be9

Please sign in to comment.