From 5524aca4617d11538bb0fcc5b0b6bc011328eda5 Mon Sep 17 00:00:00 2001 From: TJ Kohli Date: Sat, 10 Jun 2017 19:30:52 -0400 Subject: [PATCH] Improved clarity of Editor not responding actions Changed "Close" to "Force Close" because "Close" might imply closing the Alert/Dialog instead of the editor, whereas "Force Close" better describes the action that button will take. --- src/main-process/atom-window.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main-process/atom-window.coffee b/src/main-process/atom-window.coffee index 4603d9ebb..b0b516b10 100644 --- a/src/main-process/atom-window.coffee +++ b/src/main-process/atom-window.coffee @@ -160,7 +160,7 @@ class AtomWindow chosen = dialog.showMessageBox @browserWindow, type: 'warning' - buttons: ['Close', 'Keep Waiting'] + buttons: ['Force Close', 'Keep Waiting'] message: 'Editor is not responding' detail: 'The editor is not responding. Would you like to force close it or just keep waiting?' @browserWindow.destroy() if chosen is 0