diff options
author | me-dea <45652183+me-dea@users.noreply.github.com> | 2021-12-27 15:33:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-27 15:33:53 -0800 |
commit | 8b9657471ed727ff1bec527be9b4c873a6e3354b (patch) | |
tree | 941fc73c183663cac82aaae00ae8c0e43366fcaf /keyboards/massdrop | |
parent | 4e077250d56f7e786af0cdef00f4b41d77e2b85c (diff) |
massdrop/thekey: macos requires LGUI modifier instead of LCTL (#15605)
Diffstat (limited to 'keyboards/massdrop')
-rw-r--r-- | keyboards/massdrop/thekey/keymaps/url-copy-paste-macos/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/massdrop/thekey/keymaps/url-copy-paste-macos/keymap.c b/keyboards/massdrop/thekey/keymaps/url-copy-paste-macos/keymap.c index 16c73ba6ae..57382dfc5f 100644 --- a/keyboards/massdrop/thekey/keymaps/url-copy-paste-macos/keymap.c +++ b/keyboards/massdrop/thekey/keymaps/url-copy-paste-macos/keymap.c @@ -21,7 +21,7 @@ enum custom_keycodes { }; const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - [0] = LAYOUT(TK_URL, C(KC_C), C(KC_V)), + [0] = LAYOUT(TK_URL, G(KC_C), G(KC_V)), }; bool process_record_user(uint16_t keycode, keyrecord_t *record) { |