diff options
author | 2020-03-25 14:31:25 +0100 | |
---|---|---|
committer | 2020-03-25 14:31:25 +0100 | |
commit | 643fa18cae19fa1418a23b652b6b4b8bf8ef79fc (patch) | |
tree | c40bf003b7702cdc751c4d6b4adfd79c3ff63633 /native/src/input/mouse.rs | |
parent | fd7d9622e333a0a2cd5c2e8e6cc38cc09d7981e4 (diff) | |
parent | bc10ca501ba012dbd379ade93e27bc012c08c2f1 (diff) | |
download | iced-643fa18cae19fa1418a23b652b6b4b8bf8ef79fc.tar.gz iced-643fa18cae19fa1418a23b652b6b4b8bf8ef79fc.tar.bz2 iced-643fa18cae19fa1418a23b652b6b4b8bf8ef79fc.zip |
Merge pull request #202 from FabianLars/master
Text Selection for text_input widget
Diffstat (limited to 'native/src/input/mouse.rs')
-rw-r--r-- | native/src/input/mouse.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/input/mouse.rs b/native/src/input/mouse.rs index 69dc6b4c..7198b233 100644 --- a/native/src/input/mouse.rs +++ b/native/src/input/mouse.rs @@ -2,5 +2,8 @@ mod button; mod event; +pub mod click; + pub use button::Button; +pub use click::Click; pub use event::{Event, ScrollDelta}; |