There seems to be something odd going on with ggplot2 & gWidgets. See an example and the resulting image below.
Is there a way to make the facet labels render properly in gWidgets?
library(gWidgets)
library(ggplot2)
win <- gwindow("Graphics example")
ggraphics(cont = win)
p <- ggplot(mtcars, aes(mpg, wt)) +
geom_point() +
facet_grid(. ~ cyl)
p