We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e00dca commit 78d7b16Copy full SHA for 78d7b16
src/vs/workbench/electron-sandbox/parts/dialogs/dialog.contribution.ts
@@ -85,7 +85,11 @@ export class DialogHandlerContribution extends Disposable implements IWorkbenchC
85
86
// About
87
else {
88
- await this.nativeImpl.about();
+ if (this.useCustomDialog) {
89
+ await this.browserImpl.about();
90
+ } else {
91
+ await this.nativeImpl.about();
92
+ }
93
}
94
95
this.currentDialog.close(result);
0 commit comments