GNOME Bugzilla – Bug 731619
Fix Meta.KeyBindingFlags.IS_REVERSED typo
Last modified: 2014-06-16 10:58:34 UTC
The code currently tries to use Meta.KeyBindingFlags.REVERSED. Since this constant is |'ed with Meta.KeyBindingFlags.REVERSES, gjs silently ignores the unknown flag.
Created attachment 278414 [details] [review] Fix Meta.KeyBindingFlags.IS_REVERSED typo
Review of attachment 278414 [details] [review]: Right Actually on the gjs REPL it does warn: gjs> let a = {} gjs> 0 | a.a typein:7: strict warning: reference to undefined property a.a 0 I wonder why the embedded gjs doesn't.
commit d98c1ba522d34b457fa498d404c3fc3030e3b320 Author: Christophe Fergeau <cfergeau@redhat.com> Date: Thu May 29 23:23:32 2014 +0200 Fix Meta.KeyBindingFlags.IS_REVERSED typo The code currently tries to use Meta.KeyBindingFlags.REVERSED. Since this constant is |'ed with Meta.KeyBindingFlags.REVERSES, gjs silently ignores the unknown flag. https://bugzilla.gnome.org/show_bug.cgi?id=731619