Skip to content

Commit c440364

Browse files
committed
revert to unprefixed call
1 parent ff5c6e3 commit c440364

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

R/tm_g_bivariate.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1024,15 +1024,15 @@ facet_ggplot_call <- function(row_facet = character(0),
10241024
NULL
10251025
} else if (!identical(row_facet, character(0)) && !identical(col_facet, character(0))) {
10261026
call(
1027-
"ggplot2::facet_grid",
1027+
"facet_grid",
10281028
rows = call_fun_dots("vars", row_facet),
10291029
cols = call_fun_dots("vars", col_facet),
10301030
scales = scales
10311031
)
10321032
} else if (identical(row_facet, character(0)) && !identical(col_facet, character(0))) {
1033-
call("ggplot2::facet_grid", cols = call_fun_dots("vars", col_facet), scales = scales)
1033+
call("facet_grid", cols = call_fun_dots("vars", col_facet), scales = scales)
10341034
} else if (!identical(row_facet, character(0)) && identical(col_facet, character(0))) {
1035-
call("ggplot2::facet_grid", rows = call_fun_dots("vars", row_facet), scales = scales)
1035+
call("facet_grid", rows = call_fun_dots("vars", row_facet), scales = scales)
10361036
}
10371037
}
10381038

0 commit comments

Comments
 (0)