We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
default = TRUE
1 parent 87de70c commit 48a9f2eCopy full SHA for 48a9f2e
R/progress.R
@@ -108,7 +108,7 @@ Progress <- R6::R6Class(
108
109
print = function(...) {
110
if (
111
- isFALSE(getOption("dplyr.show_progress")) || # user specifies no progress
+ isFALSE(getOption("dplyr.show_progress", default = TRUE)) || # user specifies no progress
112
!interactive() || # not an interactive session
113
!is.null(getOption("knitr.in.progress")) # dplyr used within knitr document
114
) {
0 commit comments