summaryrefslogtreecommitdiff
path: root/keyboards/pistachio_mp
diff options
context:
space:
mode:
authorJames Young <18669334+noroadsleft@users.noreply.github.com>2021-06-19 14:34:48 -0700
committerGitHub <noreply@github.com>2021-06-20 07:34:48 +1000
commit11f66c317ab47a3f95b3278187392105cfe791d8 (patch)
tree433c039d06b7d69800c28c2765dc0c0a7d2964d4 /keyboards/pistachio_mp
parent6dfe915e26d7147e6c2bed495d3b01cf5b21e6ec (diff)
pistachio_mp: correct key object order in info.json (#13250)
Diffstat (limited to 'keyboards/pistachio_mp')
-rw-r--r--keyboards/pistachio_mp/info.json44
1 files changed, 25 insertions, 19 deletions
diff --git a/keyboards/pistachio_mp/info.json b/keyboards/pistachio_mp/info.json
index cbbbd67bcc..4514423f90 100644
--- a/keyboards/pistachio_mp/info.json
+++ b/keyboards/pistachio_mp/info.json
@@ -7,24 +7,30 @@
"layouts": {
"LAYOUT": {
"layout": [
- {"label":"Encoder", "x":3, "y":0},
- {"label":"Num Lock", "x":0, "y":1.5},
- {"label":"/", "x":1, "y":1.5},
- {"label":"*", "x":2, "y":1.5},
- {"label":"-", "x":3, "y":1.5},
- {"label":"7", "x":0, "y":2.5},
- {"label":"8", "x":1, "y":2.5},
- {"label":"9", "x":2, "y":2.5},
- {"label":"+", "x":3, "y":2.5, "h":2},
- {"label":"4", "x":0, "y":3.5},
- {"label":"5", "x":1, "y":3.5},
- {"label":"6", "x":2, "y":3.5},
- {"label":"1", "x":0, "y":4.5},
- {"label":"2", "x":1, "y":4.5},
- {"label":"3", "x":2, "y":4.5},
- {"label":"Enter", "x":3, "y":4.5, "h":2},
- {"label":"0", "x":0, "y":5.5, "w":2},
- {"label":".", "x":2, "y":5.5}]
+ {"label":"Encoder", "x":3, "y":0},
+
+ {"label":"Num Lock", "x":0, "y":1.5},
+ {"label":"/", "x":1, "y":1.5},
+ {"label":"*", "x":2, "y":1.5},
+ {"label":"-", "x":3, "y":1.5},
+
+ {"label":"7", "x":0, "y":2.5},
+ {"label":"8", "x":1, "y":2.5},
+ {"label":"9", "x":2, "y":2.5},
+
+ {"label":"4", "x":0, "y":3.5},
+ {"label":"5", "x":1, "y":3.5},
+ {"label":"6", "x":2, "y":3.5},
+ {"label":"+", "x":3, "y":2.5, "h":2},
+
+ {"label":"1", "x":0, "y":4.5},
+ {"label":"2", "x":1, "y":4.5},
+ {"label":"3", "x":2, "y":4.5},
+
+ {"label":"0", "x":0, "y":5.5, "w":2},
+ {"label":".", "x":2, "y":5.5},
+ {"label":"Enter", "x":3, "y":4.5, "h":2}
+ ]
}
}
-} \ No newline at end of file
+}