From 8c21ba56a1daa7812635f745e0426135402720d6 Mon Sep 17 00:00:00 2001 From: carbonfet <59760875+carbonfet@users.noreply.github.com> Date: Sat, 14 Nov 2020 03:12:43 -0500 Subject: [PATCH] Update dactyl.clj Minor fix for default thumb cluster --- src/dactyl_keyboard/dactyl.clj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dactyl_keyboard/dactyl.clj b/src/dactyl_keyboard/dactyl.clj index f3b36f8..ae5da30 100644 --- a/src/dactyl_keyboard/dactyl.clj +++ b/src/dactyl_keyboard/dactyl.clj @@ -532,7 +532,7 @@ (union (triangle-hulls ; top two (thumb-tl-place thumb-post-tr) - (thumb-tl-place web-post-br) + (thumb-tl-place (translate [-0.33 -0.25 0] web-post-br)) (thumb-tr-place thumb-post-tl) (thumb-tr-place thumb-post-bl)) (triangle-hulls ; bottom two on the right @@ -557,9 +557,9 @@ (triangle-hulls ; top two to the middle two, starting on the left (thumb-tl-place thumb-post-tl) (thumb-ml-place web-post-tr) - (thumb-tl-place web-post-bl) + (thumb-tl-place (translate [0.25 0.1 0] web-post-bl)) (thumb-ml-place web-post-br) - (thumb-tl-place web-post-br) + (thumb-tl-place (translate [-0.33 -0.25 0] web-post-br)) (thumb-mr-place web-post-tr) (thumb-tr-place thumb-post-bl) (thumb-mr-place web-post-br)