From 734292fdab412fc091f123e696e9b68c751e5b8f Mon Sep 17 00:00:00 2001 From: Malik Olivier Boussejra Date: Sun, 15 Apr 2018 17:43:13 +0900 Subject: [PATCH] imgui: Make ChannelsSplit struct visible outside the crate --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index d3d38ba..0626174 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -27,7 +27,7 @@ pub use string::{ImStr, ImString}; pub use style::StyleVar; pub use trees::{CollapsingHeader, TreeNode}; pub use window::Window; -pub use window_draw_list::{ImColor, WindowDrawList}; +pub use window_draw_list::{ImColor, WindowDrawList, ChannelsSplit}; mod child_frame; mod color_editors;