Merge pull request #182 from keyboardio/f/live-composite-keymap-update-on-setup

Update the live composite keymap too at setup time
pull/183/head
Jesse Vincent 7 years ago committed by GitHub
commit c21b88043b

@ -19,6 +19,11 @@ Kaleidoscope_::setup(void) {
// Update the keymap cache, so we start with a non-empty state.
Layer.updateActiveLayers();
for (byte row = 0; row < ROWS; row++) {
for (byte col = 0; col < COLS; col++) {
Layer.updateLiveCompositeKeymap(row, col);
}
}
}
void

Loading…
Cancel
Save