fix: flicker and ghosting in transparent windows on macOS (#46353)
* fix: transparent flicker on MAS * Gate condition on `IsTranslucent` instead
This commit is contained in:
parent
09135443a0
commit
1730062c8f
1 changed files with 3 additions and 0 deletions
|
@ -196,6 +196,9 @@ NativeWindowMac::NativeWindowMac(const gin_helper::Dictionary& options,
|
||||||
params.type = views::Widget::InitParams::TYPE_WINDOW;
|
params.type = views::Widget::InitParams::TYPE_WINDOW;
|
||||||
// Allow painting before shown, to be later disabled in ElectronNSWindow.
|
// Allow painting before shown, to be later disabled in ElectronNSWindow.
|
||||||
params.headless_mode = true;
|
params.headless_mode = true;
|
||||||
|
if (IsTranslucent()) {
|
||||||
|
params.opacity = views::Widget::InitParams::WindowOpacity::kTranslucent;
|
||||||
|
}
|
||||||
params.native_widget =
|
params.native_widget =
|
||||||
new ElectronNativeWidgetMac(this, windowType, styleMask, widget());
|
new ElectronNativeWidgetMac(this, windowType, styleMask, widget());
|
||||||
widget()->Init(std::move(params));
|
widget()->Init(std::move(params));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue