diff --git a/Source/Editor/CustomEditors/SyncPointEditor.cs b/Source/Editor/CustomEditors/SyncPointEditor.cs index 3555aaea4..8d8b85f2a 100644 --- a/Source/Editor/CustomEditors/SyncPointEditor.cs +++ b/Source/Editor/CustomEditors/SyncPointEditor.cs @@ -102,6 +102,16 @@ namespace FlaxEditor.CustomEditors /// protected virtual void OnModified() { + var parent = ParentEditor; + while (parent != null) + { + if (parent is SyncPointEditor syncPointEditor) + { + syncPointEditor.OnModified(); + break; + } + parent = parent.ParentEditor; + } } ///