Add automatic tooltip for ComboBox baed on selected item tooltip

This commit is contained in:
Wojtek Figat
2021-05-15 10:42:28 +02:00
parent 8f1f88b3ba
commit 8e31c49f1c

View File

@@ -349,6 +349,8 @@ namespace FlaxEditor.GUI
/// </summary>
protected virtual void OnSelectedIndexChanged()
{
if (_tooltips != null && _tooltips.Length == _items.Count)
TooltipText = _selectedIndices.Count == 1 ? _tooltips[_selectedIndices[0]] : null;
SelectedIndexChanged?.Invoke(this);
}