rbreaves / kinto

Mac-style shortcut keys for Linux & Windows.
http://kinto.sh
GNU General Public License v2.0
4.24k stars 212 forks source link

ALERT: Merge of #776 caused a bug in kinto.py #799

Closed RedBearAK closed 1 year ago

RedBearAK commented 1 year ago

@rbreaves

The recent merge of the PR that replaces the rest of the instances of "M" with "Alt" accidentally caught a line that was using the letter "M" as part of the shortcut. So now a fresh install of Kinto is barfing on the line because it's just modifiers.

Faulty line:

    K("RC-Alt"): K("C-Shift-Alt"),

Should be changed back to:

    K("RC-M"): K("C-Shift-M"),
rbreaves commented 1 year ago

Thanks