From b74f4eb8ebcd7f8e7cec81a2031c79211abe93bd Mon Sep 17 00:00:00 2001 From: dbr Date: Sun, 5 May 2024 12:14:51 +0930 Subject: [PATCH] Remove unneeded re-export Not needed as dock_space only adds thing to Ui --- imgui/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/imgui/src/lib.rs b/imgui/src/lib.rs index 9eb2353e7..8a180a120 100644 --- a/imgui/src/lib.rs +++ b/imgui/src/lib.rs @@ -10,8 +10,6 @@ use std::os::raw::c_char; pub use self::clipboard::*; pub use self::color::ImColor32; pub use self::context::*; -#[cfg(feature = "docking")] -pub use self::dock_space::*; pub use self::drag_drop::{DragDropFlags, DragDropSource, DragDropTarget}; pub use self::draw_list::{ChannelsSplit, DrawListMut}; pub use self::fonts::atlas::*;