From f0d7c74e838b8e8920a22e7515990fbe057ec218 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Wed, 8 Jan 2025 15:45:46 +0100 Subject: [PATCH] `response` module is now public, allowing access to `egui::response::Flags` (#5592) --- 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 fa3cb858..85e12cb8 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;