From a6b0d27bb7c52cb465db919bfa26609fe03e7a3b Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Sun, 17 Aug 2025 20:19:09 +0200 Subject: [PATCH] fix: `shell.openPath` should be non-blocking (#48089) fix: shell.openPath should be non-blocking Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr --- shell/common/platform_util_linux.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/common/platform_util_linux.cc b/shell/common/platform_util_linux.cc index 12d6dfca4001..d0f6ca904b12 100644 --- a/shell/common/platform_util_linux.cc +++ b/shell/common/platform_util_linux.cc @@ -342,7 +342,7 @@ void ShowItemInFolder(const base::FilePath& full_path) { void OpenPath(const base::FilePath& full_path, OpenCallback callback) { // This is async, so we don't care about the return value. - XDGOpen(full_path.DirName(), full_path.value(), true, std::move(callback)); + XDGOpen(full_path.DirName(), full_path.value(), false, std::move(callback)); } void OpenFolder(const base::FilePath& full_path) {