Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)

* Fixed bug in `coord_sf()` where graticule lines didn't obey
`panel.grid.major`'s linewidth setting (@teunbrand, #5179)
* The `datetime_scale()` scale constructor is now exported for use in extension
packages (@teunbrand, #4701).
* `geom_text()` drops observations where `angle = NA` instead of throwing an
Expand Down
2 changes: 1 addition & 1 deletion R/coord-sf.R
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ CoordSf <- ggproto("CoordSf", CoordCartesian,
} else {
line_gp <- gpar(
col = el$colour,
lwd = len0_null(el$size*.pt),
lwd = len0_null(el$linewidth * .pt),
lty = el$linetype
)
grobs <- c(
Expand Down