From 9d48ed980f7f3965b884449a8d2ab69a49f16292 Mon Sep 17 00:00:00 2001 From: Stuart Douglas Date: Thu, 26 Jun 2025 09:38:19 +1000 Subject: [PATCH] feat: add ability to create new directory in working dir selection (#3081) --- ui/desktop/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/desktop/src/main.ts b/ui/desktop/src/main.ts index 5628a3ab..769846dc 100644 --- a/ui/desktop/src/main.ts +++ b/ui/desktop/src/main.ts @@ -776,7 +776,7 @@ const openDirectoryDialog = async ( replaceWindow: boolean = false ): Promise => { const result = (await dialog.showOpenDialog({ - properties: ['openFile', 'openDirectory'], + properties: ['openFile', 'openDirectory', 'createDirectory'], })) as unknown as OpenDialogReturnValue; if (!result.canceled && result.filePaths.length > 0) {