From a064ca16a888a2714906e446f7526d3f2491f089 Mon Sep 17 00:00:00 2001 From: kobewi Date: Thu, 11 Apr 2024 12:20:11 +0200 Subject: [PATCH] Fix folder colors not saving after project.godot is modifed externally --- editor/filesystem_dock.cpp | 5 +++++ editor/filesystem_dock.h | 1 + 2 files changed, 6 insertions(+) diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index 3b6ce8d3961..2ed547a970c 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -3693,6 +3693,10 @@ void FileSystemDock::_feature_profile_changed() { _update_display_mode(true); } +void FileSystemDock::_project_settings_changed() { + assigned_folder_colors = ProjectSettings::get_singleton()->get_setting("file_customization/folder_colors"); +} + void FileSystemDock::set_file_sort(FileSortOption p_file_sort) { for (int i = 0; i != FILE_SORT_MAX; i++) { tree_button_sort->get_popup()->set_item_checked(i, (i == (int)p_file_sort)); @@ -4122,6 +4126,7 @@ FileSystemDock::FileSystemDock() { old_display_mode = DISPLAY_MODE_TREE_ONLY; file_list_display_mode = FILE_LIST_DISPLAY_THUMBNAILS; + ProjectSettings::get_singleton()->connect("settings_changed", callable_mp(this, &FileSystemDock::_project_settings_changed)); add_resource_tooltip_plugin(memnew(EditorTextureTooltipPlugin)); } diff --git a/editor/filesystem_dock.h b/editor/filesystem_dock.h index c9fe3a8bafc..8830f31d2d4 100644 --- a/editor/filesystem_dock.h +++ b/editor/filesystem_dock.h @@ -362,6 +362,7 @@ private: bool _is_file_type_disabled_by_feature_profile(const StringName &p_class); void _feature_profile_changed(); + void _project_settings_changed(); static Vector _remove_self_included_paths(Vector selected_strings); void _change_bottom_dock_placement();