This commit is contained in:
Vanessa
2024-05-22 09:26:58 +08:00
parent 30a965c58e
commit a339144007

View File

@@ -7,6 +7,7 @@ export class Setting {
private destroyCallback: () => void;
private width: string;
private height: string;
public dialog:Dialog;
constructor(options: {
height?: string,
@@ -97,5 +98,6 @@ export class Setting {
}
dialog.destroy();
});
this.dialog = dialog;
}
}