From 00269f96c0258cc9879cdabff5a14f327c1b9f1a Mon Sep 17 00:00:00 2001 From: Pascal Ernst Date: Mon, 4 Jan 2021 10:24:49 +0100 Subject: [PATCH] Make `style` module public (#92) Allow access to types such as `Visual` to configure the Ui style. --- egui/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egui/src/lib.rs b/egui/src/lib.rs index e8c55223..24a1b2eb 100644 --- a/egui/src/lib.rs +++ b/egui/src/lib.rs @@ -92,7 +92,7 @@ mod memory; pub mod menu; pub mod paint; mod painter; -mod style; +pub mod style; mod types; mod ui; pub mod util;