From 40c8d7e491e8ee5a504977006fb9bdb022156797 Mon Sep 17 00:00:00 2001 From: hitman249 Date: Sat, 28 Oct 2023 00:57:49 +0700 Subject: [PATCH] fixed crash if the window is hidden --- build/AppRun | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/AppRun b/build/AppRun index 241f76c..16f9ac3 100755 --- a/build/AppRun +++ b/build/AppRun @@ -42,7 +42,7 @@ atexit() if [ $NUMBER_OF_ARGS -eq 0 ] ; then exec "$BIN" --no-sandbox else - exec "$BIN" "${args[@]}" + exec "$BIN" --no-sandbox "${args[@]}" fi fi }