Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,12 @@ pub fn run() {

let builder = tauri::Builder::<BrowserEngine>::new();

// this should always be the first
#[cfg(desktop)]
let builder = builder.plugin(tauri_plugin_single_instance::init(|app, _argv, _cwd| {
let _ = show_or_create_main_window(app);
}));

// macOS needs a standard menu (with the Edit submenu) for keyboard
// copy/paste/select-all to work in the webview. It lives in the system menu
// bar, so it is macOS-only to avoid an in-window menu bar elsewhere.
Expand Down Expand Up @@ -306,11 +312,6 @@ pub fn run() {
desktop::windows::window_tracking::TrackingState::new(),
));

#[cfg(desktop)]
let builder = builder.plugin(tauri_plugin_single_instance::init(|app, _argv, _cwd| {
let _ = show_or_create_main_window(app);
}));

let builder = builder.plugin(tauri_plugin_notifications::init());

#[cfg(all(desktop, feature = "updater"))]
Expand Down
Loading