Skip to content

Commit dbb33b8

Browse files
revert customization of markershapes (#4499)
1 parent 7ef2341 commit dbb33b8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/recipes.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@ clamp_to_eps!(ary) = (replace!(x -> x <= 0.0 ? Base.eps(Float64) : x, ary); noth
11481148

11491149
@recipe function f(::Type{Val{:xerror}}, x, y, z) # COV_EXCL_LINE
11501150
error_style!(plotattributes)
1151-
markershape --> :vline
1151+
markershape := :vline
11521152
xerr = error_zipit(plotattributes[:xerror])
11531153
if z === nothing
11541154
plotattributes[:x], plotattributes[:y] = error_coords(xerr, x, y)
@@ -1165,7 +1165,7 @@ end
11651165

11661166
@recipe function f(::Type{Val{:yerror}}, x, y, z) # COV_EXCL_LINE
11671167
error_style!(plotattributes)
1168-
markershape --> :hline
1168+
markershape := :hline
11691169
yerr = error_zipit(plotattributes[:yerror])
11701170
if z === nothing
11711171
plotattributes[:y], plotattributes[:x] = error_coords(yerr, y, x)
@@ -1182,7 +1182,7 @@ end
11821182

11831183
@recipe function f(::Type{Val{:zerror}}, x, y, z) # COV_EXCL_LINE
11841184
error_style!(plotattributes)
1185-
markershape --> :hline
1185+
markershape := :hline
11861186
if z !== nothing
11871187
zerr = error_zipit(plotattributes[:zerror])
11881188
plotattributes[:z], plotattributes[:x], plotattributes[:y] =

0 commit comments

Comments
 (0)