From: Fred Silberberg Date: Sat, 15 Dec 2018 02:39:16 +0000 (-0800) Subject: Fix keymap build to send over remote desktop correctly. (#4651) X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=91a4a63ac79460c63a8a8d49786ca2a67265b24d;p=qmk_firmware.git Fix keymap build to send over remote desktop correctly. (#4651) --- diff --git a/keyboards/bigswitch/keymaps/333fred/keymap.c b/keyboards/bigswitch/keymaps/333fred/keymap.c index 791fb435f..be40fecb2 100644 --- a/keyboards/bigswitch/keymaps/333fred/keymap.c +++ b/keyboards/bigswitch/keymaps/333fred/keymap.c @@ -79,7 +79,7 @@ void dance_finished(qk_tap_dance_state_t *state, void* user_data) { case SINGLE_TAP: { // VS Build: CTRL+SHIFT+B - SEND_STRING(SS_DOWN(X_LCTRL) SS_DOWN(X_LALT) "b" SS_UP(X_LALT) SS_UP(X_LCTRL)); + send_string_with_delay_P(PSTR(SS_DOWN(X_LCTRL) SS_DOWN(X_LSHIFT) "b" SS_UP(X_LSHIFT) SS_UP(X_LCTRL)), 10); tap_dance_active = false; break; }