Skip to content

Commit

Permalink
Add refimage test + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
asinghvi17 committed Feb 7, 2024
1 parent e9e8748 commit b8d73db
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Fixed an issue where CairoMakie would unnecessarily rasterize polygons [#3605](https://github.com/MakieOrg/Makie.jl/pull/3605).
- Added `PointBased` conversion trait to `scatterlines` recipe [#3603](https://github.com/MakieOrg/Makie.jl/pull/3603).
- Fixed `band` not passing the `alpha` keyword to its mesh [#3612](https://github.com/MakieOrg/Makie.jl/pull/3612)

## [0.20.7] - 2024-02-04

Expand Down
8 changes: 8 additions & 0 deletions ReferenceTests/src/tests/examples2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1392,3 +1392,11 @@ end
ylims!(ax, 0, 1)
fig
end

@reference_test "transparency in band (#3356)" begin
f = Figure()
ax = Axis(f[1, 1])
band!(ax, 1:10, 1:10, 2:11)
band!(ax, reverse(1:10), 1:10, 2:11, alpha = 0.5)
f
end

0 comments on commit b8d73db

Please sign in to comment.