From a02c32c153c14345ca34cd61ef313c028a5b86e6 Mon Sep 17 00:00:00 2001 From: Joe Cheng Date: Tue, 13 Mar 2018 15:49:33 -0700 Subject: [PATCH] Hide internal renderPlot reactive from stack trace --- R/render-plot.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/render-plot.R b/R/render-plot.R index a4f95f319..80ddc399f 100644 --- a/R/render-plot.R +++ b/R/render-plot.R @@ -93,7 +93,7 @@ renderPlot <- function(expr, width='auto', height='auto', res=72, ..., # return a promise). The idea is that the (cached) return value from this # reactive can be used for varying width/heights, as it includes the # displaylist, which is resolution independent. - drawReactive <- reactive(label = "plotObj", { + drawReactive <- reactive(label = "plotObj", ..stacktraceon = FALSE, { hybrid_chain( { # If !execOnResize, don't invalidate when width/height changes.