electron: add createDirectory to open directory picker (#19071)
parent
aa11fa865d
commit
5d9e780029
|
|
@ -88,7 +88,7 @@ export function registerIpcHandlers(deps: Deps) {
|
|||
"open-directory-picker",
|
||||
async (_event: IpcMainInvokeEvent, opts?: { multiple?: boolean; title?: string; defaultPath?: string }) => {
|
||||
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",
|
||||
defaultPath: opts?.defaultPath,
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in New Issue