dont show tags on save dialog (mac)
This commit is contained in:
parent
0d69c3f266
commit
aed1c5e927
|
@ -116,6 +116,7 @@ export class ElectronPlatformUtilsService implements PlatformUtilsService {
|
|||
saveFile(win: Window, blobData: any, blobOptions: any, fileName: string): void {
|
||||
remote.dialog.showSaveDialog(remote.getCurrentWindow(), {
|
||||
defaultPath: fileName,
|
||||
showsTagField: false,
|
||||
}, (filename) => {
|
||||
fs.writeFile(filename, Buffer.from(blobData), (err) => {
|
||||
// error check?
|
||||
|
|
Loading…
Reference in New Issue