From bf9f102af395a2f0f1e4e8f4f2e42dfe465650d4 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sun, 16 Nov 2025 12:31:42 +0100 Subject: [PATCH] Revert unnecessary change --- crates/egui/src/containers/panel.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/egui/src/containers/panel.rs b/crates/egui/src/containers/panel.rs index 039e53154..949f8748d 100644 --- a/crates/egui/src/containers/panel.rs +++ b/crates/egui/src/containers/panel.rs @@ -975,9 +975,13 @@ impl CentralPanel { .max_rect(ctx.available_rect().round_ui()), ); panel_ui.set_clip_rect(ctx.content_rect()); + + if false { + // TODO: @lucasmerlin shouldn't we enable this? panel_ui .response() .widget_info(|| WidgetInfo::new(WidgetType::Panel)); + } let inner_response = self.show_inside_dyn(&mut panel_ui, add_contents);