Merge pull request #2843 from node-red/theme-keymap

Allow default keymap to be overridden in settings file
This commit is contained in:
Nick O'Leary
2021-02-25 16:05:51 +00:00
committed by GitHub
2 changed files with 73 additions and 36 deletions

View File

@@ -200,6 +200,10 @@ module.exports = {
themeSettings.projects = theme.projects;
}
if (theme.hasOwnProperty("keymap")) {
themeSettings.keymap = theme.keymap;
}
if (theme.theme) {
themeSettings.theme = theme.theme;
}