From fb12e63bb13540c424e1c95a7ddc04189d6e7a1b Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Thu, 19 Jan 2023 15:57:51 -0600 Subject: [PATCH] Fixed editor not saving added tags #885 --- Source/Editor/CustomEditors/Editors/TagEditor.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Editor/CustomEditors/Editors/TagEditor.cs b/Source/Editor/CustomEditors/Editors/TagEditor.cs index b95f9e722..5b65ffad3 100644 --- a/Source/Editor/CustomEditors/Editors/TagEditor.cs +++ b/Source/Editor/CustomEditors/Editors/TagEditor.cs @@ -260,6 +260,8 @@ namespace FlaxEditor.CustomEditors.Editors // Reload editor window to reflect new tag assetWindow?.RefreshAsset(); + assetWindow?.MarkAsEdited(); + assetWindow?.Save(); } }; dialog.Closed += popup =>