diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-31 08:56:55 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-31 08:56:55 +0200 |
commit | 549fcce5f8f7beace3e5c90e9bbe4335d4fd1476 (patch) | |
tree | 744344b1af67d7745b3ae51aa87d9c337abee153 | |
parent | 59f3ab0c0d32083a7bfbdfd307b539ce200a15b9 (diff) | |
parent | cde9dc6c3cbe334480a2884480dd7123d5c9a685 (diff) | |
download | redot-engine-549fcce5f8f7beace3e5c90e9bbe4335d4fd1476.tar.gz |
Merge pull request #81175 from raulsntos/dotnet/project_settings_changed
C#: Replace usage of deprecated `project_settings_changed` signal
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs b/modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs index ec28658557..f01fbbd1b9 100644 --- a/modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs +++ b/modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs @@ -440,7 +440,7 @@ namespace GodotTools { base._EnablePlugin(); - ProjectSettingsChanged += GodotSharpDirs.DetermineProjectLocation; + ProjectSettings.SettingsChanged += GodotSharpDirs.DetermineProjectLocation; if (Instance != null) throw new InvalidOperationException(); |