From d9b047a924b3b5df85ecda58124c61771bef9a17 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sun, 21 Jun 2020 10:12:56 -0700 Subject: [PATCH] Fixed browse issue with no workspace --- IDE/src/ui/LaunchDialog.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDE/src/ui/LaunchDialog.bf b/IDE/src/ui/LaunchDialog.bf index bde4b6ee..ffbac5f5 100644 --- a/IDE/src/ui/LaunchDialog.bf +++ b/IDE/src/ui/LaunchDialog.bf @@ -136,7 +136,7 @@ namespace IDE.ui GetStartupOption(scope (options) => options.mDebugOptions.mCommand, str); String dir = scope String(); - Path.GetDirectoryPath(str, dir); + Path.GetDirectoryPath(str, dir).IgnoreError(); IDEUtils.FixFilePath(dir); var fileDialog = scope System.IO.OpenFileDialog();