From 5b0049873dbdcdf26a1c37763d8bc326ddd6c0b7 Mon Sep 17 00:00:00 2001 From: Tony <45414421+TonyWu20@users.noreply.github.com> Date: Tue, 9 Nov 2021 11:20:21 +0800 Subject: [PATCH] Corrected the wrong key mapping in right hand side The "true" mapping in the bracket should match the mapping in the parenthesis. The original version will invert the key order in right hand. --- keyboards/handwired/dactyl_manuform/4x5/4x5.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/keyboards/handwired/dactyl_manuform/4x5/4x5.h b/keyboards/handwired/dactyl_manuform/4x5/4x5.h index 73f6be64c25..a4bb64a064b 100644 --- a/keyboards/handwired/dactyl_manuform/4x5/4x5.h +++ b/keyboards/handwired/dactyl_manuform/4x5/4x5.h @@ -20,12 +20,12 @@ { XXX, L31, L32, L33, L34 }, \ { XXX, L41, L42, L43, L44 }, \ \ - { R04, R03, R02, R01, R00 }, \ - { R14, R13, R12, R11, R10 }, \ - { R24, R23, R22, R21, R20 }, \ - { XXX, R33, R32, R31, R30 }, \ - { XXX, R43, R42, R41, R40 } \ -} + { R00, R01, R02, R03, R04 }, \ + { R10, R11, R12, R13, R14 }, \ + { R20, R21, R22, R23, R24 }, \ + { R30, R31, R32, R33, XXX }, \ + { R40, R41, R42, R43, XXX } \ +}/* Should align with the mapping in the parenthesis */ #else #define LAYOUT( \ L00, L01, L02, L03, L04, R00, R01, R02, R03, R04, \