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 35e146b commit 57c2a71Copy full SHA for 57c2a71
R/geom-defaults.r
@@ -15,6 +15,7 @@ update_geom_defaults <- function(geom, new) {
15
g <- check_subclass(geom, "Geom", env = parent.frame())
16
old <- g$default_aes
17
g$default_aes <- defaults(rename_aes(new), old)
18
+ class(g$default_aes) <- "uneval"
19
invisible()
20
}
21
@@ -24,5 +25,6 @@ update_stat_defaults <- function(stat, new) {
24
25
g <- check_subclass(stat, "Stat", env = parent.frame())
26
27
28
29
30
0 commit comments