Skip to content

Commit

Permalink
fix(core/window): set window_effects from config (#8677)
Browse files Browse the repository at this point in the history
Signed-off-by: AuTa <[email protected]>
  • Loading branch information
AuTa authored Jan 25, 2024
1 parent fd4bf94 commit 5e1ae87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tauri/src/window/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ async fn reopen_window(app: tauri::AppHandle) {
Self {
manager,
label: config.label.clone(),
window_effects: config.window_effects.clone(),
window_builder:
<R::WindowDispatcher as WindowDispatch<EventLoopMessage>>::WindowBuilder::with_config(
config,
Expand All @@ -249,7 +250,6 @@ async fn reopen_window(app: tauri::AppHandle) {
menu: None,
#[cfg(desktop)]
on_menu_event: None,
window_effects: None,
}
}

Expand Down

0 comments on commit 5e1ae87

Please sign in to comment.