Bug 1455462 - Part 1. Use the toolbox.zoomIn3.key shortcut. r?ochameau draft
authorMantaroh Yoshinaga <mantaroh@gmail.com>
Fri, 11 May 2018 09:08:08 +0900
changeset 793947 68162efa947af904c01cc85f693bcd12f51fa2be
parent 793895 aabfe960ab59fea2e85896b1f8050786e16ab23b
child 793948 2d18435b9043a4fdb2f1408c764f315d82ad5f26
push id109539
push userbmo:mantaroh@gmail.com
push dateFri, 11 May 2018 02:09:26 +0000
reviewersochameau
bugs1455462
milestone62.0a1
Bug 1455462 - Part 1. Use the toolbox.zoomIn3.key shortcut. r?ochameau This key will empty string, so we don't use this key now. But we might use this key in the future. MozReview-Commit-ID: ETwzSvqxXto
devtools/client/shared/zoom-keys.js
--- a/devtools/client/shared/zoom-keys.js
+++ b/devtools/client/shared/zoom-keys.js
@@ -59,17 +59,17 @@ exports.register = function(window) {
   // Set zoom to whatever the last setting was.
   setZoom(zoomValue);
 
   shortcuts.on(L10N.getStr("toolbox.zoomIn.key"), zoomIn);
   let zoomIn2 = L10N.getStr("toolbox.zoomIn2.key");
   if (zoomIn2) {
     shortcuts.on(zoomIn2, zoomIn);
   }
-  let zoomIn3 = L10N.getStr("toolbox.zoomIn2.key");
+  let zoomIn3 = L10N.getStr("toolbox.zoomIn3.key");
   if (zoomIn3) {
     shortcuts.on(zoomIn3, zoomIn);
   }
 
   shortcuts.on(L10N.getStr("toolbox.zoomOut.key"),
                zoomOut);
   let zoomOut2 = L10N.getStr("toolbox.zoomOut2.key");
   if (zoomOut2) {