[gnome-shell/wip/carlosg/osk-emoji-and-keypad: 34/40] keyboard: Fix JS warning



commit 483e3589dbc2b8852cd2b19b8081049a8f7b6c99
Author: Carlos Garnacho <carlosg gnome org>
Date:   Mon Jan 21 21:41:46 2019 +0100

    keyboard: Fix JS warning
    
    Iterate correctly through the array, instead of stepping on the possibly
    non existent first element.

 js/ui/keyboard.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js
index 3bc99cd7f..0ccb3e13d 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -861,7 +861,7 @@ var Keyboard = class Keyboard {
     }
 
     _setCurrentLevelLatched(layout, latched) {
-        for (let i = 0; layout.shiftKeys[i]; i++) {
+        for (let i = 0; i < layout.shiftKeys.length; i++) {
             let key = layout.shiftKeys[i];
             key.setLatched(latched);
         }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]