Skip to content

Commit df85424

Browse files
committed
avoid conflicts between RecipesBase and Plots
1 parent 752d6ed commit df85424

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/plot.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ end
221221

222222
size --> (1000, 300)
223223
cols = 1 + length(filter!(!isempty, cost_series))
224-
layout := @layout (1, cols)
224+
layout := RecipesBase.@layout (1, cols)
225225
margin --> 5 * Measures.mm
226226

227227
@series begin
@@ -301,7 +301,7 @@ end
301301
@assert typeof(coordinate) <: Symbol
302302

303303
if !cx
304-
layout := @layout [a{0.35w} [a b; c d]]
304+
layout := RecipesBase.@layout [a{0.35w} [a b; c d]]
305305
size --> (800, 500)
306306
end
307307

@@ -1749,7 +1749,7 @@ end
17491749
push!(plots, plt)
17501750
end
17511751

1752-
layout := @layout [length(plots) + 1]
1752+
layout := RecipesBase.@layout [length(plots) + 1]
17531753
size --> (1000, 1000)
17541754
margin --> 5 * Measures.mm
17551755

0 commit comments

Comments
 (0)