aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-05-02 00:09:57 +0200
committerpml68 <contact@pml68.dev>2025-05-02 00:09:57 +0200
commite0eadd8d093c684ed83a14e050c38ed446f019bb (patch)
treeb6de73f337ef20d46da10c72885294209f403e72
parentchore: add proper MIT attribution (diff)
downloadiced_dialog-e0eadd8d093c684ed83a14e050c38ed446f019bb.tar.gz
feat: make `Dialog` available from the crate's root
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3c59699..3fba6f2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,7 +3,7 @@
//! # Example
//! See [here](https://github.com/pml68/iced_dialog/tree/0.13/example)
pub mod dialog;
-use dialog::Dialog;
+pub use dialog::Dialog;
use iced_core as core;
use iced_core::alignment::Horizontal;
use iced_widget::Button;