diff options
author | 2020-05-30 03:04:16 +0200 | |
---|---|---|
committer | 2020-05-30 03:04:16 +0200 | |
commit | 6cb90570a3af18b1a1ad455dc1ce5858f8446aa6 (patch) | |
tree | c58e912ef392592abfd1e05ecdada0c6b4c5e249 /glow/src/lib.rs | |
parent | 6d73b94e9ab7fd639746998a83970929437b687b (diff) | |
download | iced-6cb90570a3af18b1a1ad455dc1ce5858f8446aa6.tar.gz iced-6cb90570a3af18b1a1ad455dc1ce5858f8446aa6.tar.bz2 iced-6cb90570a3af18b1a1ad455dc1ce5858f8446aa6.zip |
Expose `Backend` in `iced_glow`
Diffstat (limited to 'glow/src/lib.rs')
-rw-r--r-- | glow/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glow/src/lib.rs b/glow/src/lib.rs index c427d13a..a6c8a75a 100644 --- a/glow/src/lib.rs +++ b/glow/src/lib.rs @@ -18,9 +18,9 @@ pub mod settings; pub mod widget; pub mod window; +pub use backend::Backend; pub use settings::Settings; -pub(crate) use backend::Backend; pub(crate) use iced_graphics::Transformation; #[doc(no_inline)] |