1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-18 23:07:45 +02:00

Desktop: Added KeymapService to manage keyboard shortcuts (#3252)

This commit is contained in:
Anjula Karunarathne
2020-08-02 16:56:55 +05:30
committed by GitHub
parent cc8c200826
commit 88f22fabf7
8 changed files with 622 additions and 40 deletions

View File

@ -91,6 +91,10 @@ class PluginManager {
itemName: item.name,
});
};
if (item.accelerator instanceof Function) {
item.accelerator = item.accelerator();
}
}
output = output.concat(menuItems);