diff --git a/crates/egui/src/ui_builder.rs b/crates/egui/src/ui_builder.rs index 0900d0d06..67ed692a2 100644 --- a/crates/egui/src/ui_builder.rs +++ b/crates/egui/src/ui_builder.rs @@ -117,6 +117,8 @@ impl UiBuilder { /// Make the new `Ui` disabled, i.e. grayed-out and non-interactive. /// /// Note that if the parent `Ui` is disabled, the child will always be disabled. + /// + /// See also [`crate::Ui::add_enabled`], [`crate::Ui::add_enabled_ui`] and [`crate::Ui::is_enabled`]. #[inline] pub fn disabled(mut self) -> Self { self.disabled = true;