diff options
author | 2022-11-14 00:47:28 +0100 | |
---|---|---|
committer | 2022-11-14 00:47:28 +0100 | |
commit | 23364bc4a2adb0c9c3be6449d7226784783c4abc (patch) | |
tree | 11df677e27827adb2589dbf409ad9d86bc090efd /native/src/widget/text_input.rs | |
parent | cf410a5e0b37c7f88ea33874796f0becbe970628 (diff) | |
parent | e56c45470c9a00e31d92e4e7d4b1cb1894d4de7d (diff) | |
download | iced-23364bc4a2adb0c9c3be6449d7226784783c4abc.tar.gz iced-23364bc4a2adb0c9c3be6449d7226784783c4abc.tar.bz2 iced-23364bc4a2adb0c9c3be6449d7226784783c4abc.zip |
Merge pull request #1526 from mtkennerly/feature/find-focused
Add widget operation to find currently focused widget
Diffstat (limited to 'native/src/widget/text_input.rs')
-rw-r--r-- | native/src/widget/text_input.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/native/src/widget/text_input.rs b/native/src/widget/text_input.rs index e2886181..ef2f9a17 100644 --- a/native/src/widget/text_input.rs +++ b/native/src/widget/text_input.rs @@ -333,6 +333,12 @@ impl Id { } } +impl From<Id> for widget::Id { + fn from(id: Id) -> Self { + id.0 + } +} + /// Produces a [`Command`] that focuses the [`TextInput`] with the given [`Id`]. pub fn focus<Message: 'static>(id: Id) -> Command<Message> { Command::widget(operation::focusable::focus(id.0)) |