diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-05 23:44:49 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-05 23:44:49 +0100 |
commit | 1b2e0b32d727ceab387afcabba422f994038e439 (patch) | |
tree | 6dc821b91b7b2bc65f9c3aa8498f45a069036adb | |
parent | dc55f8b6b23d63f4719f3a513429071bf7b19083 (diff) | |
parent | 6caa24b1b80f2c5dc6338942e945f172df4ecffc (diff) | |
download | redot-engine-1b2e0b32d727ceab387afcabba422f994038e439.tar.gz |
Merge pull request #89200 from KoBeWi/e
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; } |