Improve deprecation text for `open_url/copied_text`

This commit is contained in:
Emil Ernerfeldt 2025-01-29 08:44:13 +01:00
parent 7d87acb5fa
commit f86f62bb3d
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ pub struct PlatformOutput {
pub cursor_icon: CursorIcon,
/// If set, open this url.
#[deprecated = "Use `Context::open_url` instead"]
#[deprecated = "Use `Context::open_url` or `PlatformOutput::commands` instead"]
pub open_url: Option<OpenUrl>,
/// If set, put this text in the system clipboard. Ignore if empty.
@ -126,7 +126,7 @@ pub struct PlatformOutput {
/// }
/// # });
/// ```
#[deprecated = "Use `Context::copy_text` instead"]
#[deprecated = "Use `Context::copy_text` or `PlatformOutput::commands` instead"]
pub copied_text: String,
/// Events that may be useful to e.g. a screen reader.