Skip to content

Commit

Permalink
Fix full screen message to the webview
Browse files Browse the repository at this point in the history
  • Loading branch information
core1024 committed Apr 22, 2024
1 parent 0a42499 commit 015237c
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions src/stremio_app/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,27 +70,19 @@ pub struct MainWindow {
}

impl MainWindow {
fn transmit_window_full_screen_change(&self, prevent_close: bool) {
fn transmit_window_full_screen_change(&self, full_screen: bool, prevent_close: bool) {
let web_channel = self.webview.channel.borrow();
let (web_tx, _) = web_channel
.as_ref()
.expect("Cannont obtain communication channel for the Web UI");
let web_tx_app = web_tx.clone();
let full_screen = {
self.saved_window_style
.try_borrow()
.ok()
.map(|saved_style| saved_style.full_screen)
};
if let Some(full_screen) = full_screen {
web_tx_app
.send(RPCResponse::visibility_change(
self.window.visible(),
prevent_close as u32,
full_screen,
))
.ok();
}
web_tx_app
.send(RPCResponse::visibility_change(
self.window.visible(),
prevent_close as u32,
full_screen,
))
.ok();
}
fn transmit_window_state_change(&self) {
if let (Some(hwnd), Ok(web_channel), Ok(style)) = (
Expand Down Expand Up @@ -327,7 +319,7 @@ impl MainWindow {
self.tray
.tray_topmost
.set_checked((saved_style.ex_style as u32 & WS_EX_TOPMOST) == WS_EX_TOPMOST);
self.transmit_window_full_screen_change(true);
self.transmit_window_full_screen_change(saved_style.full_screen, true);
}
}
}
Expand Down Expand Up @@ -363,7 +355,7 @@ impl MainWindow {
}
self.window.set_visible(false);
self.tray.tray_show_hide.set_checked(self.window.visible());
self.transmit_window_full_screen_change(false);
self.transmit_window_full_screen_change(false, false);
// Terminates the app regardless if the user is set exit on window closed or not
// nwg::stop_thread_dispatch();
}
Expand Down

0 comments on commit 015237c

Please sign in to comment.