summaryrefslogtreecommitdiffstats
path: root/src/window.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-07-01 06:09:39 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-07-01 06:10:31 +0200
commita0cc7e4e43f16de4c19607f913b7f587c61aa5ef (patch)
tree22006e79b559727221d67165afbfe4e03785d6ac /src/window.rs
parent9a037a23e9b32d9dbe7086a54d777b5f0550a660 (diff)
downloadiced-a0cc7e4e43f16de4c19607f913b7f587c61aa5ef.tar.gz
iced-a0cc7e4e43f16de4c19607f913b7f587c61aa5ef.tar.bz2
iced-a0cc7e4e43f16de4c19607f913b7f587c61aa5ef.zip
Move `Icon` to `iced` crate and introduce `Error`
Diffstat (limited to 'src/window.rs')
-rw-r--r--src/window.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/window.rs b/src/window.rs
index 54ea2a02..a2883b62 100644
--- a/src/window.rs
+++ b/src/window.rs
@@ -2,5 +2,8 @@
mod mode;
mod settings;
+pub mod icon;
+
+pub use icon::Icon;
pub use mode::Mode;
pub use settings::Settings;