Skip to content

Commit

Permalink
🩹 Turn off size fallback from GeomBar (#6281)
Browse files Browse the repository at this point in the history
* turn off `size` fallback mechanism

* add news bullet
  • Loading branch information
teunbrand authored Jan 28, 2025
1 parent b9d1c79 commit a85c6a2
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
@@ -1,5 +1,7 @@
# ggplot2 (development version)

* Turned off fallback for `size` to `linewidth` translation in
`geom_bar()`/`geom_col()` (#4848).
* `coord_radial()` now displays no axis instead of throwing an error when
a scale has no breaks (@teunbrand, #6271).
* The `fatten` argument has been deprecated in `geom_boxplot()`,
Expand Down
2 changes: 1 addition & 1 deletion R/geom-bar.R
Original file line number Diff line number Diff line change
Expand Up @@ -155,5 +155,5 @@ GeomBar <- ggproto("GeomBar", GeomRect,
flip_data(data, params$flipped_aes)
},

rename_size = TRUE
rename_size = FALSE
)

0 comments on commit a85c6a2

Please sign in to comment.