Skip to content

Commit

Permalink
Merge pull request #112 from intechstudio/SUKU-dev
Browse files Browse the repository at this point in the history
SUKU German layout added ED-81
  • Loading branch information
SukuWc authored Jun 29, 2022
2 parents 89f4019 + fcb0d7c commit 36ecd99
Show file tree
Hide file tree
Showing 2 changed files with 435 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/app/config-blocks/Macro.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,13 @@
import * as keyMap from '../../external/macro/map.json';
import * as keyMap_en from '../../external/macro/map-en.json';
import * as keyMap_hu from '../../external/macro/map-hu.json';
import * as keyMap_de from '../../external/macro/map-de.json';
const layouts = [{name: "En", lookup: keyMap_en.default}, {name: "Hu", lookup: keyMap_hu.default}]
const layouts = [
{name: "En", lookup: keyMap_en.default},
{name: "Hu", lookup: keyMap_hu.default},
{name: "De", lookup: keyMap_de.default}
]
let layout = layouts[0]
Expand Down
Loading

0 comments on commit 36ecd99

Please sign in to comment.