Skip to content

Commit

Permalink
Fix histogram fix :)
Browse files Browse the repository at this point in the history
  • Loading branch information
briochemc committed Feb 24, 2020
1 parent 1ffc4b6 commit 4456579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UnitfulRecipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ key_unit(axis) = Symbol("xyz"[axis], "unit")

function recipe!(attr, arr)
fixscatterattributes!(attr)
if attr[:seriestype] == :histogram
if get(attr, :seriestype, nothing) == :histogram
resolve_axis!(attr, arr, 1)
else
resolve_axis!(attr, arr, 2)
Expand Down

2 comments on commit 4456579

@briochemc
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/10020

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.7 -m "<description of version>" 4456579577458d80bb82c59c23ec195e7f06b07d
git push origin v0.1.7

Please sign in to comment.