Improve LocalizationSettings editor

This commit is contained in:
Wojtek Figat
2021-04-22 16:10:20 +02:00
parent b5e19d95bd
commit c23d2ad2c4
3 changed files with 100 additions and 6 deletions

View File

@@ -139,7 +139,7 @@ namespace FlaxEditor.CustomEditors
/// <inheritdoc />
protected override void OnModified()
{
Presenter.Modified?.Invoke();
Presenter.OnModified();
base.OnModified();
}
@@ -354,6 +354,14 @@ namespace FlaxEditor.CustomEditors
ExpandGroups(this, false);
}
/// <summary>
/// Invokes <see cref="Modified"/> event.
/// </summary>
public void OnModified()
{
Modified?.Invoke();
}
/// <summary>
/// Called when selection gets changed.
/// </summary>