summaryrefslogtreecommitdiff
path: root/keyboards/bigswitch/keymaps
diff options
context:
space:
mode:
authorFred Silberberg <fred@silberberg.xyz>2018-12-14 18:39:16 -0800
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2018-12-14 18:39:16 -0800
commit91a4a63ac79460c63a8a8d49786ca2a67265b24d (patch)
tree4c2e9e1860b5c1309d841feb9d99e4d9cc2199d6 /keyboards/bigswitch/keymaps
parent039434caf96c77a8584f03ab2b27ed255e7adae5 (diff)
Fix keymap build to send over remote desktop correctly. (#4651)
Diffstat (limited to 'keyboards/bigswitch/keymaps')
-rw-r--r--keyboards/bigswitch/keymaps/333fred/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/bigswitch/keymaps/333fred/keymap.c b/keyboards/bigswitch/keymaps/333fred/keymap.c
index 791fb435f4..be40fecb23 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;
}