Allow clipboard access in Widget::on_event
This commit is contained in:
parent
0f2e20f5e5
commit
a14b39555e
20 changed files with 89 additions and 26 deletions
|
|
@ -29,11 +29,9 @@ pub mod conversion;
|
|||
pub mod settings;
|
||||
|
||||
mod application;
|
||||
mod clipboard;
|
||||
mod subscription;
|
||||
|
||||
pub use application::Application;
|
||||
pub use settings::Settings;
|
||||
|
||||
// We disable debug capabilities on release builds unless the `debug` feature
|
||||
// is explicitly enabled.
|
||||
#[cfg(feature = "debug")]
|
||||
|
|
@ -43,4 +41,8 @@ mod debug;
|
|||
#[path = "debug/null.rs"]
|
||||
mod debug;
|
||||
|
||||
pub use application::Application;
|
||||
pub use settings::Settings;
|
||||
|
||||
use clipboard::Clipboard;
|
||||
use debug::Debug;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue