ggthemr icon indicating copy to clipboard operation
ggthemr copied to clipboard

ggthemr_reset() does not work

Open yjiakang opened this issue 4 years ago • 0 comments

Thanks for your package, I found a bug when I am using ggthemr_reset() function. It can not return back to the default theme of ggplot2. Can you help? Here is my code:

library(ggplot2)
library(ggthemr)
ggthemr("light")
ggplot(mtcars) + geom_point(aes(x = cyl, y = mpg))
ggthemr_reset()
ggplot(mtcars) + geom_point(aes(x = cyl, y = mpg))

yjiakang avatar Dec 09 '20 02:12 yjiakang