GNOME Bugzilla – Bug 727800
MainWindow: make clicking the map grab focus
Last modified: 2014-04-08 09:04:33 UTC
Fix map grab focus after clicking on it (see 57e2e3fc466245307cc457becd1c961958a9a462) broken by a previous commit (531c44191e20610c53cbdf526cad4d7d2ba4690f).
Created attachment 273765 [details] [review] MainWindow: make clicking the map grab focus
Created attachment 273767 [details] [review] MainWindow: make clicking the map grab focus Fix map grab focus after clicking on it broken by a previous commit. (531c44191e20610c53cbdf526cad4d7d2ba4690f)
Review of attachment 273767 [details] [review]: Thanks Dario! I will commit this with the minor change below. ::: src/application.js @@ +108,3 @@ return; + let overlay = new Gtk.Overlay({ visible: true, 'can-focus': true }); should be: new Gtk.Overlay({ visible: true, can_focus: true });