summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2022-11-14 00:24:23 +0100
committerLibravatar GitHub <noreply@github.com>2022-11-14 00:24:23 +0100
commitf5c9f63329ec420757c81ef73ab76e7a8cb2cd2e (patch)
tree06cd44cdc5abfca94c1acfa10ab0281ae21c4b0c /src
parent5f08b8d41ae2d749bd11068f103a0f8ce3abd7bf (diff)
parenta7a4a92466a4447f8d2e9b5ae2fc715ba6262de0 (diff)
downloadiced-f5c9f63329ec420757c81ef73ab76e7a8cb2cd2e.tar.gz
iced-f5c9f63329ec420757c81ef73ab76e7a8cb2cd2e.tar.bz2
iced-f5c9f63329ec420757c81ef73ab76e7a8cb2cd2e.zip
Merge pull request #1529 from tarkah/feat/text-input-operations
Add text input operations
Diffstat (limited to '')
-rw-r--r--src/widget.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/widget.rs b/src/widget.rs
index 8c8ea216..7c67a599 100644
--- a/src/widget.rs
+++ b/src/widget.rs
@@ -120,7 +120,8 @@ pub mod toggler {
pub mod text_input {
//! Display fields that can be filled with text.
pub use iced_native::widget::text_input::{
- focus, Appearance, Id, StyleSheet,
+ focus, move_cursor_to, move_cursor_to_end, move_cursor_to_front,
+ select_all, Appearance, Id, StyleSheet,
};
/// A field that can be filled with text.