aboutsummaryrefslogtreecommitdiff
path: root/src/ui/mod.rs
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2024-01-21 16:15:12 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2024-01-21 16:15:12 +0100
commit53a48a778af34bd25963881539e6f66f47dc5580 (patch)
tree23a4193a40506fc354eaea626c9e8d58d343abae /src/ui/mod.rs
parent6e0a9ec574dcc6da863c6d8e482c5a2cb4701df4 (diff)
add resizable pane
Diffstat (limited to 'src/ui/mod.rs')
-rw-r--r--src/ui/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/mod.rs b/src/ui/mod.rs
index 1e7fffe..b7c11fb 100644
--- a/src/ui/mod.rs
+++ b/src/ui/mod.rs
@@ -1,8 +1,12 @@
+use iced::widget::pane_grid::ResizeEvent;
+
pub mod graph;
+pub mod pane;
#[derive(Debug, Clone)]
pub enum Message {
InputChanged(String),
UpdateFunction,
UpdateScreen,
+ Resized(ResizeEvent)
}