Added a tooltip for the listen button.

This commit is contained in:
MineBill
2024-01-02 19:46:08 +02:00
parent a5d0916f93
commit 5158de4ac6

View File

@@ -44,7 +44,7 @@ namespace FlaxEditor.CustomEditors.Editors
panel.CustomControl.SlotsHorizontally = 2;
panel.CustomControl.SlotsVertically = 1;
var button = panel.Button("Listen");
var button = panel.Button("Listen", "Press to listen for input events");
_button = button.Button;
_button.Clicked += OnButtonClicked;
ResetButton();