Skip to content

Commit

Permalink
REGRESSION FIX: Gnome 44 keybind fixes were backported which actually
Browse files Browse the repository at this point in the history
broke Gnome 43,42 keybind clashes.  This reverts the
Gtk.accelerator_parse function, which in return two results (rather than
3 in Gnome 44).
  • Loading branch information
jtaala committed May 29, 2023
1 parent 9a1611a commit 3ca6773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ function keystrToKeycombo(keystr) {
keystr = keystr.replace('Above_Tab', 'a');
aboveTab = true;
}
let [ok, key, mask] = Gtk.accelerator_parse(keystr);
let [key, mask] = Gtk.accelerator_parse(keystr);

if (aboveTab)
key = META_KEY_ABOVE_TAB;
Expand Down

0 comments on commit 3ca6773

Please sign in to comment.