mirror of
https://github.com/pierre42100/ComunicDesktop
synced 2024-11-23 20:49:21 +00:00
Can enable dark mode
This commit is contained in:
parent
33b8e4e2b6
commit
e01f521192
@ -15,27 +15,53 @@ const {app, Menu} = require('electron');
|
|||||||
module.exports.Get = function(window){
|
module.exports.Get = function(window){
|
||||||
|
|
||||||
return Menu.buildFromTemplate([
|
return Menu.buildFromTemplate([
|
||||||
|
|
||||||
|
//File menu
|
||||||
{
|
{
|
||||||
label: "File",
|
label: "File",
|
||||||
submenu: [
|
submenu: [
|
||||||
|
|
||||||
|
//Close app
|
||||||
{
|
{
|
||||||
label: "Quit",
|
label: "Quit",
|
||||||
click: () => {
|
click: () => {
|
||||||
app.quit();
|
app.quit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
//Settings menu
|
||||||
|
{
|
||||||
|
label: "Settings",
|
||||||
|
submenu: [
|
||||||
|
|
||||||
|
//Dark mode
|
||||||
|
{
|
||||||
|
label: "Toggle dark mode",
|
||||||
|
click: () => {
|
||||||
|
window.webContents.executeJavaScript("ComunicWeb.components.darkTheme.setEnabled(!ComunicWeb.components.darkTheme.isEnabled());");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
//Advanced menu
|
||||||
{
|
{
|
||||||
label: "Advanced",
|
label: "Advanced",
|
||||||
submenu: [
|
submenu: [
|
||||||
|
|
||||||
|
//Dev tools
|
||||||
{
|
{
|
||||||
label: "Toggle developer tools",
|
label: "Toggle developer tools",
|
||||||
click: () => {
|
click: () => {
|
||||||
window.webContents.toggleDevTools();
|
window.webContents.toggleDevTools();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
|
Loading…
Reference in New Issue
Block a user