From 359c6e8a76e14f4a6a6c3ff85e446ca3ac87cdac Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 5 Nov 2010 01:08:45 +1100 Subject: [PATCH] Improve t_u and t_r descriptions. --HG-- extra : rebase_source : f630111750ec2f2feaf7442534f4528036ea7975 --- common/content/editor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/editor.js b/common/content/editor.js index b016c272..5523b959 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -612,7 +612,7 @@ const Editor = Module("editor", { // text edit mode mappings.add([modes.TEXT_EDIT], - ["u"], "Undo", + ["u"], "Undo changes", function (count) { editor.executeCommand("cmd_undo", count); editor.unselectText(); @@ -620,7 +620,7 @@ const Editor = Module("editor", { { count: true }); mappings.add([modes.TEXT_EDIT], - [""], "Redo", + [""], "Redo undone changes", function (count) { editor.executeCommand("cmd_redo", count); editor.unselectText();