jukirchn / electron-projects

Example projects from the book "Electron Projects" (Denys Vulka)
0 stars 0 forks source link

Markdown-editor: showSaveDialog does not print the filename #2

Open jukirchn opened 2 years ago

jukirchn commented 2 years ago
    dialog.showSaveDialog(window, options, filename => {
        console.log('filename');
    });

does open the save dialog. But no filename is printed after typing the filename and clicking on the "save" button.