From 9a9879775808696e02175dc38a7ee5b07c37de12 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Fri, 19 Feb 2021 13:44:08 +0100 Subject: [PATCH] Show "New folder" in mac dialog --- src/dialogs.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialogs.jsx b/src/dialogs.jsx index 4775414e..40763f9c 100644 --- a/src/dialogs.jsx +++ b/src/dialogs.jsx @@ -85,7 +85,7 @@ export async function askForYouTubeInput() { export async function askForOutDir(defaultPath) { const { filePaths } = await dialog.showOpenDialog({ - properties: ['openDirectory'], + properties: ['openDirectory', 'createDirectory'], defaultPath, title: i18n.t('Where do you want to save output files?'), message: i18n.t('Where do you want to save output files? Make sure there is enough free space in this folder'),