Skip to content

Commit

Permalink
fix name conflicts with Bonito
Browse files Browse the repository at this point in the history
  • Loading branch information
ffreyer committed Oct 7, 2024
1 parent 54fe949 commit 5f6b1cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ReferenceTests/src/tests/figures_and_makielayout.jl
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,8 @@ end

@reference_test "Button - Slider - Toggle - Textbox" begin
f = Figure(size = (500, 250))
Button(f[1, 1:2])
Button(f[2, 1:2], buttoncolor = :orange, cornerradius = 20,
Makie.Button(f[1, 1:2])
Makie.Button(f[2, 1:2], buttoncolor = :orange, cornerradius = 20,
strokecolor = :red, strokewidth = 2, # TODO: allocate space for this
fontsize = 16, labelcolor = :blue)

Expand All @@ -430,8 +430,8 @@ end
Toggle(f[4, 2], active = true, framecolor_inactive = :lightblue,
framecolor_active = :yellow, rimfraction = 0.6)

Slider(f[3, 3])
sl = Slider(f[4, 3], range = 0:100, linewidth = 20, color_inactive = :cyan,
Makie.Slider(f[3, 3])
sl = Makie.Slider(f[4, 3], range = 0:100, linewidth = 20, color_inactive = :cyan,
color_active_dimmed = :lightgreen)
Makie.set_close_to!(sl, 30)

Expand Down

0 comments on commit 5f6b1cd

Please sign in to comment.