Skip to content

Commit

Permalink
Fix stray srand in showtheme
Browse files Browse the repository at this point in the history
  • Loading branch information
mkborregaard committed Jan 5, 2019
1 parent 7acb5a4 commit ba46299
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Plots.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ _current_plots_version = v"0.20.6"
using Reexport

import StaticArrays
using Dates, Printf, Statistics, Base64, LinearAlgebra
using Dates, Printf, Statistics, Base64, LinearAlgebra, Random
import SparseArrays: findnz

@reexport using RecipesBase
Expand Down
2 changes: 1 addition & 1 deletion src/themes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ _get_showtheme_args(thm::Symbol, func::Symbol) = thm, get(_color_functions, func
end
end

srand(1)
Random.seed!(1)

label := ""
colorbar := false
Expand Down

0 comments on commit ba46299

Please sign in to comment.