fixing 60 percent layout

60 percent layout needed array of [0] for row 0 (Function keys).  Without it, every row was getting the wrong depth/angle.
This commit is contained in:
Matthew Ebersviller 2021-07-09 12:14:10 -06:00
parent 29f5cd2468
commit cdf75654a6
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
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 height/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],
@ -9,6 +10,7 @@ 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"],