Improve LocalizationSettings editor
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user