We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d54ee9 commit 36d5b07Copy full SHA for 36d5b07
NEWS.md
@@ -47,6 +47,9 @@ It further changes the licensing model of ggplot2 to an MIT license.
47
48
* Update tests to work with the new `all.equal()` defaults in R >4.0.3
49
50
+* Fixed a bug that `guide_bins()` mistakenly ignore `override.aes` argument
51
+ (@yutannihilation, #4085).
52
+
53
# ggplot2 3.3.2
54
This is a small release focusing on fixing regressions introduced in 3.3.1.
55
R/guide-bins.R
@@ -116,6 +116,7 @@ guide_bins <- function(
116
117
# general
118
direction = direction,
119
+ override.aes = rename_aes(override.aes),
120
default.unit = default.unit,
121
reverse = reverse,
122
order = order,
0 commit comments