You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using backdrop-filter in my app and with regular BrowserWindow I can enable experimental features like this
const win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
// preload: path.join(__dirname, 'preload.js'),
experimentalFeatures: true, // Enable experimental features
},
// transparent: true, // Important for transparency
autohideMenuBar: true, // Optional: if you want to hide the menu
show: false, // Optional: if you want to show the window later
frame: true, // Optional: if you want a frameless window
vibrancy: 'ultra-dark', // This can be used to mimic the backdrop effect
});
I am using backdrop-filter in my app and with regular BrowserWindow I can enable experimental features like this
Doing the same in MicaBrowserWindow does nothing
The text was updated successfully, but these errors were encountered: