From 8688695b28183c94c62cb5b0ddb8ca00c5082402 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 10 Aug 2026 07:14:22 +0200 Subject: [PATCH] Clarify UI Control `Enabled` doc --- Source/Engine/UI/GUI/Control.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Engine/UI/GUI/Control.cs b/Source/Engine/UI/GUI/Control.cs index 8ae3b3616..2c8138984 100644 --- a/Source/Engine/UI/GUI/Control.cs +++ b/Source/Engine/UI/GUI/Control.cs @@ -223,9 +223,9 @@ namespace FlaxEngine.GUI public bool IsScrollable { get; set; } = true; /// - /// Gets or sets a value indicating whether the control can respond to user interaction + /// Gets or sets a value indicating whether the control can respond to user interaction. Disabled control remains visible but is grayed out. /// - [EditorOrder(520), Tooltip("If checked, control will receive input events of the user interaction.")] + [EditorOrder(520), Tooltip("If checked, control will receive input events of the user interaction. Disabled control remains visible but is grayed out.")] public bool Enabled { get => _isEnabled;