From f9b1c079d18a10e68067a943b50d88a08089430a Mon Sep 17 00:00:00 2001 From: Bob Date: Fri, 31 Jan 2020 00:34:37 -0500 Subject: [PATCH] Update default.scad --- src/layouts/gherkin/default.scad | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/layouts/gherkin/default.scad b/src/layouts/gherkin/default.scad index 51babea..3ca9482 100644 --- a/src/layouts/gherkin/default.scad +++ b/src/layouts/gherkin/default.scad @@ -7,6 +7,12 @@ gherkin_mapping = [ [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], ]; +gherkin_default_legends = [ + ["q", "w", "e", "r", "t", "y", "u", "i", "o", "p"], + ["a", "s", "d", "f", "g", "h", "j", "k", "l", ";"], + ["z", "x", "c", "v", "b", "n", "m", ",", ".", "/"], +]; + module gherkin_default(profile) { - layout(gherkin_mapping, profile, row_sculpting_offset=1) children(); + layout(gherkin_mapping, profile, legends=gherkin_default_legends, row_sculpting_offset=1, row_override=3) children(); }