Fix updating input fields on editing end without changes

Fixes #197
This commit is contained in:
Wojtek Figat
2021-02-03 22:34:11 +01:00
parent 9c348b284f
commit e3142e6408
2 changed files with 21 additions and 2 deletions

View File

@@ -942,6 +942,8 @@ namespace FlaxEngine.GUI
{
base.OnLostFocus();
if (IsReadOnly)
return;
OnEditEnd();
}