Skip to content

Commit

Permalink
Fix #297
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasp85 committed Jan 18, 2024
1 parent 4d1f07b commit 30bb18b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
`filter` aesthetic would lead to weird errors. `NA` is now treated as `FALSE`
(#306)
* `shapeGrob()` is now exported for use by other packages (#303)
* Fix a bug in `geom_autohistogram()` that prevented it to be used with
continuous data (#297)

# ggforce 0.4.1

Expand Down
2 changes: 1 addition & 1 deletion R/autohistogram.R
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ StatAutobin <- ggproto('StatAutobin', StatBin,
binned <- ggproto_parent(StatBin, self)$compute_group(
data, scales, binwidth = binwidth, bins = bins, center = center,
boundary = boundary, closed = closed, pad = pad, breaks = breaks,
origin = origin, right = right, drop = drop, width = width
origin = origin, right = right, drop = drop
)
}

Expand Down

0 comments on commit 30bb18b

Please sign in to comment.