Fixing 60% row offset the correct way

This commit is contained in:
Matthew Ebersviller 2021-07-21 09:48:08 -06:00 committed by GitHub
parent d7ea2bf7cc
commit 762e45ba3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,6 @@
include <../layout.scad>
60_percent_default_layout = [
[0], // Row 0 (Function keys); blank so other rows get correct depth/angle
[1,1,1,1,1,1,1,1,1,1,1,1,1,2],
[1.5,1,1,1,1,1,1,1,1,1,1,1,1,1.5],
[1.75,1,1,1,1,1,1,1,1,1,1,1,2.25],
@ -10,7 +9,6 @@ include <../layout.scad>
];
60_percent_legends = [
[""], // blank row 0 again
["`", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "=", "⌫"],
["tab", "q", "w", "e", "r", "t", "y", "u", "i", "o", "p", "[", "]", "\\"],
["caps", "a", "s", "d", "f", "g", "h", "j", "k", "l", ";", "'", "enter"],
@ -19,5 +17,5 @@ include <../layout.scad>
];
module 60_percent_default(profile) {
layout(60_percent_default_layout, profile, 60_percent_legends) children();
layout(60_percent_default_layout, profile, 60_percent_legends, row_sculpting_offset=1) children();
}