From e08ea80b551eefb3c3b61ab7b006aa755c0c78f3 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Wed, 8 Jan 2025 15:38:59 +0100 Subject: [PATCH] `response` module is now public, allowing access to `egui::response::Flags` --- crates/egui/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui/src/lib.rs b/crates/egui/src/lib.rs index 1afaada95e1..719a55b409f 100644 --- a/crates/egui/src/lib.rs +++ b/crates/egui/src/lib.rs @@ -427,7 +427,7 @@ pub mod os; mod painter; mod pass_state; pub(crate) mod placer; -mod response; +pub mod response; mod sense; pub mod style; pub mod text_selection;