Skip to content

Commit

Permalink
fix(app): send visibility events when window is shown or hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
tymmesyde committed Feb 24, 2025
1 parent 06670d7 commit dc02893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stremio_app/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl MainWindow {
fn transmit_window_visibility_change(&self) {
if let (Ok(web_channel), Ok(style)) = (
self.webview.channel.try_borrow(),
self.saved_window_style.try_borrow()
self.saved_window_style.try_borrow(),
) {
let (web_tx, _) = web_channel
.as_ref()
Expand Down

0 comments on commit dc02893

Please sign in to comment.