From f5c5e79c9f4ff24da79f3c009a658c2d79d0e04e Mon Sep 17 00:00:00 2001 From: Boyan Bejanov Date: Tue, 10 Sep 2024 02:45:56 -0400 Subject: [PATCH] fix passing user flags to kaleido executable (#21) --- src/PlotlyKaleido.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PlotlyKaleido.jl b/src/PlotlyKaleido.jl index 97ca3f7..1a2bc20 100644 --- a/src/PlotlyKaleido.jl +++ b/src/PlotlyKaleido.jl @@ -117,7 +117,7 @@ function start(; end end # We add the flags to the BIN - append!(BIN.exec, chromium_flags, extra_flags) + append!(BIN.exec, chromium_flags, user_flags) kstdin = Pipe() kstdout = Pipe()