Merge pull request #1 from joshcarter/master

README fix for keys with labels.
This commit is contained in:
Bob 2018-08-01 11:37:55 -04:00 committed by GitHub
commit 13683d9c4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ If you wanted to generate some 2u stabilized keycaps for an Ergodox for instance
``` ```
legends = ["Enter", "Escape", "Tab", "Shift"]; legends = ["Enter", "Escape", "Tab", "Shift"];
for(y=[0:3]) { for(y=[0:3]) {
translate_u(0,y) 2u() dsa_row() stabilized() cherry() key(legends[y], inset=true); translate_u(0,y) 2u() dsa_row() stabilized() cherry() key(inset=true) { keytext(legends[y], [0,0], 6); }
} }
``` ```