Improve function name

This commit is contained in:
Andrew Palugniok 2018-08-27 15:11:07 +01:00
parent d3fdeeacce
commit 13d4a65279
2 changed files with 2 additions and 3 deletions

View File

@ -1536,7 +1536,7 @@ function _replace_linewidth(d::KW)
end end
end end
function _slice_kw!(d::KW, commandIndex::Int) function _slice_attribute_cycles!(d::KW, commandIndex::Int)
for (k,v) in d for (k,v) in d
slice_arg!(d, d, k, v, commandIndex, false) slice_arg!(d, d, k, v, commandIndex, false)
end end

View File

@ -221,8 +221,7 @@ function _plot!(plt::Plot, d::KW, args::Tuple)
# # we update subplot args in case something like the color palatte is part of the recipe # # we update subplot args in case something like the color palatte is part of the recipe
# _update_subplot_args(plt, sp, kw, idx, true) # _update_subplot_args(plt, sp, kw, idx, true)
# select from attribute cycles _slice_attribute_cycles!(kw, command_idx(kw_list,kw))
_slice_kw!(kw, command_idx(kw_list,kw))
# now we have a fully specified series, with colors chosen. we must recursively handle # now we have a fully specified series, with colors chosen. we must recursively handle
# series recipes, which dispatch on seriestype. If a backend does not natively support a seriestype, # series recipes, which dispatch on seriestype. If a backend does not natively support a seriestype,