1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-21 11:50:42 +03:00

window: slightly condense opaque/shadow setting logic

refs: #445
This commit is contained in:
Wez Furlong 2021-01-30 08:02:48 -08:00
parent 6b9401365c
commit baf168e458

View File

@ -702,19 +702,18 @@ impl WindowInner {
}
fn update_window_shadow(&mut self) {
if config().window_background_opacity() < 1.0 {
unsafe {
self.window.setOpaque_(NO);
// Turn off the window shadow, because when the background is transparent
// having the shadow enabled seems to correlate with ghostly remnants
// see: https://github.com/wez/wezterm/issues/310
self.window.setHasShadow_(NO);
}
let is_opaque = if config().window_background_opacity() >= 1.0 {
YES
} else {
unsafe {
self.window.setOpaque_(YES);
self.window.setHasShadow_(YES);
}
NO
};
unsafe {
self.window.setOpaque_(is_opaque);
// when transparent, also turn off the window shadow,
// because having the shadow enabled seems to correlate
// with ghostly remnants see:
// https://github.com/wez/wezterm/issues/310
self.window.setHasShadow_(is_opaque);
}
}
}