diff options
author | kobewi <kobewi4e@gmail.com> | 2024-03-05 21:27:08 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-03-05 21:27:08 +0100 |
commit | 6caa24b1b80f2c5dc6338942e945f172df4ecffc (patch) | |
tree | 148bf57616c1dd84b84e46a241fb9cf5ca429a90 | |
parent | 39f90600bc553f2273e72708eb2a8d37a8517e86 (diff) | |
download | redot-engine-6caa24b1b80f2c5dc6338942e945f172df4ecffc.tar.gz |
Fix AssetLibrary not going online when clicking button
-rw-r--r-- | editor/plugins/asset_library_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp index 459c5e8b31..13bdc366bf 100644 --- a/editor/plugins/asset_library_editor_plugin.cpp +++ b/editor/plugins/asset_library_editor_plugin.cpp @@ -680,7 +680,7 @@ void EditorAssetLibrary::_notification(int p_what) { case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: { if (!EditorSettings::get_singleton()->check_changed_settings_in_group("asset_library") && - !EditorSettings::get_singleton()->check_changed_settings_in_group("netweork")) { + !EditorSettings::get_singleton()->check_changed_settings_in_group("network")) { break; } |