From 191d6f62d622c16f54ef85bbb552facfe273a061 Mon Sep 17 00:00:00 2001 From: shikokuchuo <53399081+shikokuchuo@users.noreply.github.com> Date: Fri, 4 Oct 2024 20:45:00 +0100 Subject: [PATCH] turn off force for cli progress bar --- R/map.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/map.R b/R/map.R index 6015700c0..de1c88eb6 100644 --- a/R/map.R +++ b/R/map.R @@ -290,7 +290,7 @@ print.mirai_map <- function(x, ...) { .progress_cli <- compiler::compile( quote( if (i == 0L) cli::cli_progress_bar(type = NULL, total = xlen, auto_terminate = TRUE, .envir = .) else - if (i <= xlen) cli::cli_progress_update(force = TRUE, .envir = .) + if (i <= xlen) cli::cli_progress_update(.envir = .) ) )