Skip to content

Commit

Permalink
fix: add missing neverShowAgain [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam committed Apr 5, 2023
1 parent 9dbdd41 commit 033a6bd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion patches/fix-eol-banner.patch
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ index b120c94..1bb2b88 100644
+
toJSON(): object {
diff --git a/src/vs/workbench/electron-sandbox/window.ts b/src/vs/workbench/electron-sandbox/window.ts
index cf6af9d..1344cb5 100644
index cf6af9d..108ce8f 100644
--- a/src/vs/workbench/electron-sandbox/window.ts
+++ b/src/vs/workbench/electron-sandbox/window.ts
@@ -725,3 +725,4 @@ export class NativeWindow extends Disposable {
Expand All @@ -57,6 +57,12 @@ index cf6af9d..1344cb5 100644
+ icon: Codicon.warning,
+ neverShowAgain: { id: 'windowseol', isSecondary: true, scope: NeverShowAgainScope.APPLICATION }
});
@@ -764,3 +765,4 @@ export class NativeWindow extends Disposable {
actions,
- icon: Codicon.warning
+ icon: Codicon.warning,
+ neverShowAgain: { id: 'macoseol', isSecondary: true, scope: NeverShowAgainScope.APPLICATION }
});
diff --git a/src/vs/workbench/services/banner/browser/bannerService.ts b/src/vs/workbench/services/banner/browser/bannerService.ts
index 639b1b2..70e8847 100644
--- a/src/vs/workbench/services/banner/browser/bannerService.ts
Expand Down

0 comments on commit 033a6bd

Please sign in to comment.