From 235f34c02367ea97874687314b8287a74de12b63 Mon Sep 17 00:00:00 2001 From: Amr Bashir Date: Tue, 8 Aug 2023 17:55:02 +0300 Subject: [PATCH] Update core/tauri/src/menu/mod.rs Co-authored-by: Lucas Fernandes Nogueira --- core/tauri/src/menu/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tauri/src/menu/mod.rs b/core/tauri/src/menu/mod.rs index 5b47ccfc6fbc..6df31547fa97 100644 --- a/core/tauri/src/menu/mod.rs +++ b/core/tauri/src/menu/mod.rs @@ -194,7 +194,7 @@ pub trait IsMenuItem: sealed::IsMenuItemBase { /// /// This trait is ONLY meant to be implemented internally by the crate. pub trait ContextMenu: sealed::ContextMenuBase + Send + Sync { - /// Popup this menu as a context menu on the specified window at the specified position. + /// Popup this menu as a context menu on the specified window at the cursor position. fn popup(&self, window: crate::Window) -> crate::Result<()>; /// Popup this menu as a context menu on the specified window at the specified position.