We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f239e3 commit 0578435Copy full SHA for 0578435
.gitignore
@@ -75,8 +75,3 @@ inst/doc
75
*.docx
76
*.ppt
77
*.pptx
78
-
79
-# Generic archives (if you also want to block ZIPs, etc.)
80
-*.zip
81
-*.tar
82
-*.gz
R/gridify-classes.R
@@ -567,7 +567,9 @@ gridify <- function(
567
if (inherits(object, "formula")) {
568
if (requireNamespace("gridGraphics")) {
569
object_expr <- object[[2]]
570
- object <- grid::grid.grabExpr(gridGraphics::grid.echo(function() eval(object_expr)))
+ object <- grid::grid.grabExpr(
571
+ gridGraphics::grid.echo(function() eval(object_expr))
572
+ )
573
} else {
574
stop("Please install gridGraphics to use it in gridify.")
575
}
0 commit comments