Remove transparent: true
for transparencyOption
See https://github.com/electron/electron/issues/29937#issuecomment-1193030133
This commit is contained in:
parent
032b94e81d
commit
1913aba9df
1 changed files with 1 additions and 2 deletions
|
@ -396,8 +396,7 @@ function createMainWindow() {
|
||||||
...(transparencyOption &&
|
...(transparencyOption &&
|
||||||
transparencyOption !== "none" && {
|
transparencyOption !== "none" && {
|
||||||
backgroundColor: "#00000000",
|
backgroundColor: "#00000000",
|
||||||
backgroundMaterial: transparencyOption,
|
backgroundMaterial: transparencyOption
|
||||||
transparent: true
|
|
||||||
}),
|
}),
|
||||||
...(staticTitle && { title: "Vesktop" }),
|
...(staticTitle && { title: "Vesktop" }),
|
||||||
...(process.platform === "darwin" && getDarwinOptions()),
|
...(process.platform === "darwin" && getDarwinOptions()),
|
||||||
|
|
Reference in a new issue