Fixed bug where proper file extension wasn't appended to filename. (#2151)

#892
This commit is contained in:
AlexFsmn
2018-08-06 20:54:58 +02:00
committed by Karl Burtram
parent 220e4feb1d
commit 21b913845f
2 changed files with 46 additions and 11 deletions

View File

@@ -54,7 +54,7 @@ export interface OpenDialogOptions {
message?: string;
}
export interface FileFilter {
export class FileFilter {
extensions: string[];
name: string;
}