docs: document macOS restrictions on Menu::add_item (#7983)

This commit is contained in:
Amr Bashir 2023-10-16 15:15:15 +03:00 committed by GitHub
parent d6e10e216e
commit dfe0badf19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -335,6 +335,12 @@ impl Menu {
}
/// Adds the custom menu item to the menu.
///
/// ## Platform-spcific:
///
/// - **macOS:** Only [`Submenu`] can be added to the menu
///
/// [`Submenu`]: crate::Submenu
#[must_use]
pub fn add_item(mut self, item: CustomMenuItem) -> Self {
self.items.push(MenuEntry::CustomItem(item));