mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2025-03-22 22:36:37 +00:00
Fixing 60% row offset the correct way
This commit is contained in:
parent
d7ea2bf7cc
commit
762e45ba3d
1 changed files with 1 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
||||||
include <../layout.scad>
|
include <../layout.scad>
|
||||||
|
|
||||||
60_percent_default_layout = [
|
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,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.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],
|
[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 = [
|
60_percent_legends = [
|
||||||
[""], // blank row 0 again
|
|
||||||
["`", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "=", "⌫"],
|
["`", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "=", "⌫"],
|
||||||
["tab", "q", "w", "e", "r", "t", "y", "u", "i", "o", "p", "[", "]", "\\"],
|
["tab", "q", "w", "e", "r", "t", "y", "u", "i", "o", "p", "[", "]", "\\"],
|
||||||
["caps", "a", "s", "d", "f", "g", "h", "j", "k", "l", ";", "'", "enter"],
|
["caps", "a", "s", "d", "f", "g", "h", "j", "k", "l", ";", "'", "enter"],
|
||||||
|
@ -19,5 +17,5 @@ include <../layout.scad>
|
||||||
];
|
];
|
||||||
|
|
||||||
module 60_percent_default(profile) {
|
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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue