Skip to content

Commit

Permalink
fix(window.ts): unresponsive window popup message (#126351)
Browse files Browse the repository at this point in the history
The word `no longer` seems a bit too definitive, implying that it
would not get back to be responsive again, but there is an option
of waiting it to be responsive.

NFC.
  • Loading branch information
ksyx authored Jun 15, 2021
1 parent b499ce8 commit 723bdcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/platform/windows/electron-main/window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ export class CodeWindow extends Disposable implements ICodeWindow {
mnemonicButtonLabel(localize({ key: 'wait', comment: ['&& denotes a mnemonic'] }, "&&Keep Waiting")),
mnemonicButtonLabel(localize({ key: 'close', comment: ['&& denotes a mnemonic'] }, "&&Close"))
],
message: localize('appStalled', "The window is no longer responding"),
message: localize('appStalled', "The window is not responding"),
detail: localize('appStalledDetail', "You can reopen or close the window or keep waiting."),
noLink: true,
defaultId: 0,
Expand Down

0 comments on commit 723bdcf

Please sign in to comment.