From a14b39555e5c480422c24df7d708dd1addd0a67b Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 18 Dec 2019 07:45:49 +0100 Subject: Allow clipboard access in `Widget::on_event` --- native/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'native/src/lib.rs') 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; -- cgit