Add tooltip text for path to let user know it is not editable.

This commit is contained in:
Chandler Cox
2024-12-31 12:52:54 -06:00
parent e53eddaba5
commit a313db22d2
7 changed files with 7 additions and 0 deletions

View File

@@ -765,6 +765,7 @@ namespace FlaxEditor.Windows.Assets
layout.Space(5);
layout.Label("Import Path:");
var textBox = layout.TextBox().TextBox;
textBox.TooltipText = "Path is not editable here.";
textBox.IsReadOnly = true;
textBox.Text = path;
layout.Space(2);