From c9b6619fc95e24c8699d8512e4b3b9788990145d Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 24 Jan 2026 19:49:42 +0100 Subject: [PATCH] Remove redundant `tauri` namespace in type definition --- runtime/src/app_window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/app_window.rs b/runtime/src/app_window.rs index e09a10b5..c69c5c08 100644 --- a/runtime/src/app_window.rs +++ b/runtime/src/app_window.rs @@ -714,7 +714,7 @@ pub struct ShortcutResponse { /// This is used by both `register_shortcut` and `resume_shortcuts` to /// avoid code duplication. fn register_shortcut_with_callback( - shortcut_manager: &mut impl tauri::GlobalShortcutManager, + shortcut_manager: &mut impl GlobalShortcutManager, shortcut: &str, shortcut_id: Shortcut, event_sender: broadcast::Sender,