Merge pull request #2806 from namanlp/fix-window-show-issue

Fix #2630:  The Linux window show bug
This commit is contained in:
Kiril Videlov 2024-02-19 18:55:18 +01:00 committed by GitHub
commit 94373436f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -300,7 +300,7 @@ fn show_window(handle: &tauri::AppHandle) -> tauri::Result<()> {
window.set_focus()?;
#[cfg(not(target_os = "macos"))]
window.hide()?;
window.show()?;
}
Ok(())