From 077aac479f9b8462e30833e48163a9e653f517a3 Mon Sep 17 00:00:00 2001 From: kamesy <58350382+kamesy@users.noreply.github.com> Date: Thu, 13 Mar 2025 14:41:00 -0700 Subject: [PATCH] Remove duplicate startup flags --- src/engine.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine.jl b/src/engine.jl index f61f868..93afdad 100644 --- a/src/engine.jl +++ b/src/engine.jl @@ -5,8 +5,8 @@ # Session open & close # ########################################################### -const default_startflag = "-nodisplay -nosplash -nodesktop" # no additional flags -const default_matlabcmd = matlab_cmd * " -nodisplay -nosplash -nodesktop" +const default_startflag = "-nodisplay" +const default_matlabcmd = matlab_cmd * " -nosplash -nodesktop" # pass matlab flags directly or as a Vector of flags, i.e. "-a" or ["-a", "-b", "-c"] startcmd(flag::AbstractString=default_startflag) = isempty(flag) ? default_matlabcmd : default_matlabcmd * " " * flag