diff options
author | 2024-03-10 15:47:38 -0300 | |
---|---|---|
committer | 2024-07-08 01:16:31 +0200 | |
commit | 76f5bc2ccebb4c8b76ef81856c52da5b5e7c8960 (patch) | |
tree | 22673d11b6878a19eda279ef24add1de11dc3d16 /core/src | |
parent | 23d9497e7ff54f48a4c07247d7f1f68270b510d2 (diff) | |
download | iced-76f5bc2ccebb4c8b76ef81856c52da5b5e7c8960.tar.gz iced-76f5bc2ccebb4c8b76ef81856c52da5b5e7c8960.tar.bz2 iced-76f5bc2ccebb4c8b76ef81856c52da5b5e7c8960.zip |
add SelectAll to TextEditor
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/text/editor.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/text/editor.rs b/core/src/text/editor.rs index fbf60696..aea00921 100644 --- a/core/src/text/editor.rs +++ b/core/src/text/editor.rs @@ -70,6 +70,8 @@ pub enum Action { SelectWord, /// Select the line at the current cursor. SelectLine, + /// Select the entire buffer. + SelectAll, /// Perform an [`Edit`]. Edit(Edit), /// Click the [`Editor`] at the given [`Point`]. |