You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning("Suppressing axis rendering when strip.position = 'bottom' and strip.placement == 'outside'", call.=FALSE)
} else {
axis_mat_x_bottom[row_pos] <-row_axes
}
I think this == and != should be replaced with identical() or wrapped with isTRUE() for safety. But, potentially, this can be counted as one of theme_void()'s problems. c.f. #3039 (comment).
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/
lockbot
locked and limited conversation to collaborators
Aug 17, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
facet_wrap(~cyl, ncol = 2L, strip.position = "bottom") + theme_grey()
facet_wrap(~cyl, ncol = 2L, strip.position = "bottom") + theme_void()
facet_wrap(~cyl, ncol = 2L, strip.position = "left") + theme_void()
facet_wrap(~cyl, ncol = NULL, strip.position = "bottom") + theme_void()
It is observed with both release 3.1.0 and
master
The text was updated successfully, but these errors were encountered: