summaryrefslogtreecommitdiffstats
path: root/native/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-11 13:47:43 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-11 13:47:43 +0700
commit6ab4611a6eec9c4bb4ca1ff1bb580bb7edf49add (patch)
treec96d3eb77ffe99a580ed13efecc50d2857f1b8f0 /native/src/lib.rs
parent90c20ac46b72b6d8f735f7efd283b9d1dfecfb9d (diff)
downloadiced-6ab4611a6eec9c4bb4ca1ff1bb580bb7edf49add.tar.gz
iced-6ab4611a6eec9c4bb4ca1ff1bb580bb7edf49add.tar.bz2
iced-6ab4611a6eec9c4bb4ca1ff1bb580bb7edf49add.zip
Invalidate widget tree from `Responsive` widget
... by introducing a new `invalidate_widgets` method to `Shell`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r--native/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs
index 4211995f..c527a69a 100644
--- a/native/src/lib.rs
+++ b/native/src/lib.rs
@@ -50,6 +50,7 @@ pub mod subscription;
pub mod svg;
pub mod text;
pub mod touch;
+pub mod user_interface;
pub mod widget;
pub mod window;
@@ -57,7 +58,6 @@ mod element;
mod hasher;
mod runtime;
mod shell;
-mod user_interface;
// We disable debug capabilities on release builds unless the `debug` feature
// is explicitly enabled.
@@ -91,5 +91,5 @@ pub use renderer::Renderer;
pub use runtime::Runtime;
pub use shell::Shell;
pub use subscription::Subscription;
-pub use user_interface::{Cache, UserInterface};
+pub use user_interface::UserInterface;
pub use widget::Widget;