Hi, I've noticed that it is not possible to rotate strip text when forcing strip text to the left hand side of the plot using facet grid. For example: ```r ggplot(mtcars, aes(disp, hp)) + geom_point() + facet_grid(cyl~carb, switch="y") + theme(strip.text.y=element_text(angle=90)) ggplot(mtcars, aes(disp, hp)) + geom_point() + facet_grid(cyl~carb, switch="y") + theme(strip.text.y=element_text(angle=0)) ``` does nothing, however removing `switch="y"` and rotating the text seems fine: ```r ggplot(mtcars, aes(disp, hp)) + geom_point() + facet_grid(cyl~carb) + theme(strip.text.y=element_text(angle=90)) ggplot(mtcars, aes(disp, hp)) + geom_point() + facet_grid(cyl~carb) + theme(strip.text.y=element_text(angle=0)) ``` ggplot2 version is 3.3.2