From a90989db58674f4fe07c5c5184d57630fc8c358f Mon Sep 17 00:00:00 2001 From: dbr Date: Sat, 20 Feb 2021 20:01:26 +1100 Subject: [PATCH] Make draw_list module public --- imgui/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui/src/lib.rs b/imgui/src/lib.rs index f490bc8..07c71d3 100644 --- a/imgui/src/lib.rs +++ b/imgui/src/lib.rs @@ -58,7 +58,7 @@ pub mod color; mod columns; mod context; pub mod drag_drop; -mod draw_list; +pub mod draw_list; mod fonts; mod input; mod input_widget;