diff --git a/Source/Editor/Modules/ContentDatabaseModule.cs b/Source/Editor/Modules/ContentDatabaseModule.cs index 969317071..ecafbf5d4 100644 --- a/Source/Editor/Modules/ContentDatabaseModule.cs +++ b/Source/Editor/Modules/ContentDatabaseModule.cs @@ -724,7 +724,7 @@ namespace FlaxEditor.Modules /// /// The proxy type. /// Should rebuild entire database after addition. - public void AddProxy(ContentProxy proxy, bool rebuild = true) + public void AddProxy(ContentProxy proxy, bool rebuild = false) { Proxy.Insert(0, proxy); if (rebuild) @@ -736,7 +736,7 @@ namespace FlaxEditor.Modules /// /// The proxy type. /// Should rebuild entire database after removal. - public void RemoveProxy(ContentProxy proxy, bool rebuild = true) + public void RemoveProxy(ContentProxy proxy, bool rebuild = false) { Proxy.Remove(proxy); if (rebuild)