diff options
author | 2019-12-19 17:43:25 +0100 | |
---|---|---|
committer | 2019-12-19 17:43:25 +0100 | |
commit | 773a23630be538372d5dd1a609d654a1289be389 (patch) | |
tree | a53a42d424ce36dd26c24a5a03140458013956ad /native/src/lib.rs | |
parent | 9cf61fb82cb715ab0af15343be258b2b227d85f4 (diff) | |
parent | 8c8c5bb7665c1ac50d2ad355b06f1ea02dc5b4c2 (diff) | |
download | iced-773a23630be538372d5dd1a609d654a1289be389.tar.gz iced-773a23630be538372d5dd1a609d654a1289be389.tar.bz2 iced-773a23630be538372d5dd1a609d654a1289be389.zip |
Merge pull request #132 from hecrj/feature/read-clipboard
Clipboard access
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index c4d72df8..8dcacb2b 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -45,6 +45,7 @@ pub mod renderer; pub mod subscription; pub mod widget; +mod clipboard; mod element; mod event; mod hasher; @@ -57,6 +58,7 @@ pub use iced_core::{ Point, Rectangle, Vector, VerticalAlignment, }; +pub use clipboard::Clipboard; pub use element::Element; pub use event::Event; pub use hasher::Hasher; |