Skip to content

Commit 32ee97b

Browse files
authored
Fix axis names for FacetNull (#1814)
Fixes #1813
1 parent d4ba506 commit 32ee97b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/facet-null.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FacetNull <- ggproto("FacetNull", Facet,
5656
z_matrix <- matrix(c(5, 6, 4, 7, 1, 8, 3, 9, 2), ncol = 3, byrow = TRUE)
5757
grob_widths <- unit.c(grobWidth(axis_v$left), unit(1, "null"), grobWidth(axis_v$right))
5858
grob_heights <- unit.c(grobHeight(axis_h$top), unit(aspect_ratio, "null"), grobHeight(axis_h$bottom))
59-
grob_names <- c("spacer", "axis-t", "spacer", "axis-l", "panel", "axis-r", "spacer", "axis-b", "spacer")
59+
grob_names <- c("spacer", "axis-l", "spacer", "axis-t", "panel", "axis-b", "spacer", "axis-r", "spacer")
6060
grob_clip <- c("off", "off", "off", "off", "on", "off", "off", "off", "off")
6161

6262
layout <- gtable_matrix("layout", all,

0 commit comments

Comments
 (0)