Skip to content

Commit a85c6a2

Browse files
authored
🩹 Turn off size fallback from GeomBar (#6281)
* turn off `size` fallback mechanism * add news bullet
1 parent b9d1c79 commit a85c6a2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

‎NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# ggplot2 (development version)
22

3+
* Turned off fallback for `size` to `linewidth` translation in
4+
`geom_bar()`/`geom_col()` (#4848).
35
* `coord_radial()` now displays no axis instead of throwing an error when
46
a scale has no breaks (@teunbrand, #6271).
57
* The `fatten` argument has been deprecated in `geom_boxplot()`,

‎R/geom-bar.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,5 +155,5 @@ GeomBar <- ggproto("GeomBar", GeomRect,
155155
flip_data(data, params$flipped_aes)
156156
},
157157

158-
rename_size = TRUE
158+
rename_size = FALSE
159159
)

0 commit comments

Comments
 (0)