From 27131f56e3ca43ee50cfb63d33a52022d442e334 Mon Sep 17 00:00:00 2001 From: Matt Fellenz Date: Wed, 6 Aug 2025 17:12:18 +0200 Subject: [PATCH] Improve SidePanel::resizable docs --- crates/egui/src/containers/panel.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/egui/src/containers/panel.rs b/crates/egui/src/containers/panel.rs index 2869f598cf4..9478ffe67ae 100644 --- a/crates/egui/src/containers/panel.rs +++ b/crates/egui/src/containers/panel.rs @@ -151,6 +151,8 @@ impl SidePanel { /// * A [`crate::Separator`]. /// * A [`crate::TextEdit`]. /// * … + /// If you don't provide an expandable widget, the resize behavior is + /// undefined. #[inline] pub fn resizable(mut self, resizable: bool) -> Self { self.resizable = resizable;