Skip to content

Commit

Permalink
fix namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
isentropic committed Jan 16, 2024
1 parent 83270c3 commit 0a16cc5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion ext/PlotsGRExt/PlotsGRExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ using Plots:
is_uniformly_spaced,
DPI,
shape_data,
is_2tuple
is_2tuple,
is3d,
straightline_data,
convert_to_polar

using RecipesPipeline: RecipesPipeline
using NaNMath: NaNMath
Expand Down
1 change: 1 addition & 0 deletions src/Commons/Commons.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ using Plots.Measures: mm, BoundingBox
using Plots.PlotUtils: PlotUtils, ColorPalette, plot_color, isdark, ColorGradient
using Plots.RecipesBase
using Plots: DEFAULT_LINEWIDTH
using Plots: Statistics

const AVec = AbstractVector
const AMat = AbstractMatrix
Expand Down
2 changes: 1 addition & 1 deletion src/Commons/args.jl
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ is_series_attr(k) = k in _all_series_args
is_axis_attr(k) = Symbol(chop(string(k); head = 1, tail = 0)) in _all_axis_args
is_axis_attr_noletter(k) = k in _all_axis_args

RecipesBase.is_key_supported(k::Symbol) = is_attr_supported(k)
RecipesBase.is_key_supported(k::Symbol) = Plots.is_attr_supported(k)

# -----------------------------------------------------------------------------
autopick_ignore_none_auto(arr::AVec, idx::Integer) =
Expand Down

0 comments on commit 0a16cc5

Please sign in to comment.