* Create the main menu for the given app
(app, settings)
| 17 | */ |
| 18 | |
| 19 | constructor(app, settings) { |
| 20 | this.app = app |
| 21 | this.settings = settings |
| 22 | const template = this.createTemplate() |
| 23 | |
| 24 | // Finally, build menu |
| 25 | Menu.setApplicationMenu(Menu.buildFromTemplate(template)) |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Callback for when theme button is clicked. |
nothing calls this directly
no test coverage detected