diff options
author | 2023-09-12 15:03:23 +0200 | |
---|---|---|
committer | 2023-09-12 15:03:23 +0200 | |
commit | 1455911b636f19810e12eeb12a6eed11c5244cfe (patch) | |
tree | 20c063264bcf1a2efe4c8cd8f690ad2dbd3671d2 /core/src/text | |
parent | 6448429103c9c82b90040ac5a5a097bdded23f82 (diff) | |
download | iced-1455911b636f19810e12eeb12a6eed11c5244cfe.tar.gz iced-1455911b636f19810e12eeb12a6eed11c5244cfe.tar.bz2 iced-1455911b636f19810e12eeb12a6eed11c5244cfe.zip |
Add `Enter` variant to `Action` in `text::Editor`
Diffstat (limited to 'core/src/text')
-rw-r--r-- | core/src/text/editor.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/text/editor.rs b/core/src/text/editor.rs index a4fd0ec1..09d4efde 100644 --- a/core/src/text/editor.rs +++ b/core/src/text/editor.rs @@ -51,6 +51,7 @@ pub enum Action { SelectWord, SelectLine, Insert(char), + Enter, Backspace, Delete, Click(Point), |