Fix stray srand in showtheme
This commit is contained in:
parent
7acb5a4bdb
commit
ba46299088
@ -5,7 +5,7 @@ _current_plots_version = v"0.20.6"
|
|||||||
using Reexport
|
using Reexport
|
||||||
|
|
||||||
import StaticArrays
|
import StaticArrays
|
||||||
using Dates, Printf, Statistics, Base64, LinearAlgebra
|
using Dates, Printf, Statistics, Base64, LinearAlgebra, Random
|
||||||
import SparseArrays: findnz
|
import SparseArrays: findnz
|
||||||
|
|
||||||
@reexport using RecipesBase
|
@reexport using RecipesBase
|
||||||
|
|||||||
@ -100,7 +100,7 @@ _get_showtheme_args(thm::Symbol, func::Symbol) = thm, get(_color_functions, func
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
srand(1)
|
Random.seed!(1)
|
||||||
|
|
||||||
label := ""
|
label := ""
|
||||||
colorbar := false
|
colorbar := false
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user