electron: add createDirectory to open directory picker (#19071)
This commit is contained in:
@@ -88,7 +88,7 @@ export function registerIpcHandlers(deps: Deps) {
|
|||||||
"open-directory-picker",
|
"open-directory-picker",
|
||||||
async (_event: IpcMainInvokeEvent, opts?: { multiple?: boolean; title?: string; defaultPath?: string }) => {
|
async (_event: IpcMainInvokeEvent, opts?: { multiple?: boolean; title?: string; defaultPath?: string }) => {
|
||||||
const result = await dialog.showOpenDialog({
|
const result = await dialog.showOpenDialog({
|
||||||
properties: ["openDirectory", ...(opts?.multiple ? ["multiSelections" as const] : [])],
|
properties: ["openDirectory", ...(opts?.multiple ? ["multiSelections" as const] : []), "createDirectory"],
|
||||||
title: opts?.title ?? "Choose a folder",
|
title: opts?.title ?? "Choose a folder",
|
||||||
defaultPath: opts?.defaultPath,
|
defaultPath: opts?.defaultPath,
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user