Focus: When printing the keymap, use the effective layout

Instead of printing the keymap from EEPROM, print the effective layout.

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
pull/365/head
Gergely Nagy 8 years ago
parent ba6128dddc
commit 8782cea7c1

@ -88,7 +88,7 @@ bool EEPROMKeymap::focusKeymap(const char *command) {
for (uint8_t layer = 0; layer < max_layers_; layer++) {
for (uint8_t row = 0; row < ROWS; row++) {
for (uint8_t col = 0; col < COLS; col++) {
Key k = getKey(layer, row, col);
Key k = Layer.getKey(layer, row, col);
printKey(k);
::Focus.printSpace();

Loading…
Cancel
Save