diff options
author | 2021-08-26 14:41:33 +0700 | |
---|---|---|
committer | 2021-08-26 14:41:33 +0700 | |
commit | 7614127d3641cf3224798c2f0ff07b6ae57d9a53 (patch) | |
tree | 413fc3a6f7a22bfaf00de05dfcc9acf5b40bdd26 /core/src/keyboard.rs | |
parent | aa63841e2c80ca8130adf41d25e5d731409b92f4 (diff) | |
download | iced-7614127d3641cf3224798c2f0ff07b6ae57d9a53.tar.gz iced-7614127d3641cf3224798c2f0ff07b6ae57d9a53.tar.bz2 iced-7614127d3641cf3224798c2f0ff07b6ae57d9a53.zip |
Rename `HitTestResult` to `Hit`
... and also move it to a new `text` module in `iced_core`
Diffstat (limited to 'core/src/keyboard.rs')
-rw-r--r-- | core/src/keyboard.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/keyboard.rs b/core/src/keyboard.rs index cb64701a..6827a4db 100644 --- a/core/src/keyboard.rs +++ b/core/src/keyboard.rs @@ -1,4 +1,4 @@ -//! Reuse basic keyboard types. +//! Listen to keyboard events. mod event; mod hotkey; mod key_code; |