summaryrefslogtreecommitdiff
path: root/docs/reference_configurator_support.md
diff options
context:
space:
mode:
authorJames Young <18669334+noroadsleft@users.noreply.github.com>2025-11-03 16:05:39 -0800
committerGitHub <noreply@github.com>2025-11-04 00:05:39 +0000
commita9739f78681dee290ede955c02b360f5c133f783 (patch)
tree3f49a2d4b8f200b091379c52822e8ddf03776b3a /docs/reference_configurator_support.md
parenta5fb7cfbc9f8e2eee6dcd46f3d47ec58fd539336 (diff)
[docs] Replace Imgur-hosted images (#25690)
Diffstat (limited to 'docs/reference_configurator_support.md')
-rw-r--r--docs/reference_configurator_support.md18
1 files changed, 14 insertions, 4 deletions
diff --git a/docs/reference_configurator_support.md b/docs/reference_configurator_support.md
index d0824c7705..4f2ddfffe8 100644
--- a/docs/reference_configurator_support.md
+++ b/docs/reference_configurator_support.md
@@ -189,15 +189,25 @@ Currently, the Configurator does not support key rotation or non-rectangular key
189 189
190For ISO Enter keys, QMK custom is to display it as a rectangular key, 1.25u wide and 2u high, aligned so its right edge is aligned with the right edge of the alphanumeric key block. 190For ISO Enter keys, QMK custom is to display it as a rectangular key, 1.25u wide and 2u high, aligned so its right edge is aligned with the right edge of the alphanumeric key block.
191 191
192![](https://i.imgur.com/JKngtTw.png) 192![](/JKngtTw.png)
193*A 60% keyboard in standard ISO layout, as rendered by QMK Configurator.* 193*A 60% keyboard in standard ISO layout, as rendered by QMK Configurator.*
194 194
195#### Vertically-offset keys 195#### Vertically-offset keys
196 196
197For vertically-offset keys, place them in KLE as if they were not offset, then edit the Y-values as needed in the converted JSON file 197For vertically-offset keys, place them in KLE as if they were not offset, then edit the Y-values as needed in the converted JSON file
198 198
199![](https://i.imgur.com/fmDvDzR.png) 199![](/fmDvDzR.png)
200*An 1800-layout keyboard as rendered in Keyboard Layout Editor, without the vertical offset applied to the arrow keys.* 200*An 1800-layout keyboard as rendered in Keyboard Layout Editor, without the vertical offset applied to the arrow keys.*
201 201
202![](https://i.imgur.com/8beYMBR.png) 202```diff
203*A Unix diff file, showing the changes needed to vertically-offset the arrow keys in our keyboard's JSON file.* 203-{"label": "\u2191", "x", 14.25, "y": 5},
204+{"label": "\u2191", "x", 14.25, "y": 5.25},
205...
206-{"label": "\u2190", "x", 13.25, "y": 6},
207-{"label": "\u2193", "x", 14.25, "y": 6},
208-{"label": "\u2192", "x", 15.25, "y": 6},
209+{"label": "\u2190", "x", 13.25, "y": 6.25},
210+{"label": "\u2193", "x", 14.25, "y": 6.25},
211+{"label": "\u2192", "x", 15.25, "y": 6.25},
212```
213*A diff showing the changes needed to vertically-offset the arrow keys in our keyboard's JSON file.*