Merge pull request #49980 from EricEzaM/fix-default-log-state

EditorLog filter buttons are now enabled/on by default
This commit is contained in:
Rémi Verschelde 2021-06-29 12:00:03 +02:00 committed by GitHub
commit 8597db0ac2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 12 deletions

View File

@ -123,12 +123,12 @@ void EditorLog::_load_state() {
Ref<ConfigFile> config;
config.instantiate();
Error err = config->load(EditorSettings::get_singleton()->get_project_settings_dir().plus_file("editor_layout.cfg"));
config->load(EditorSettings::get_singleton()->get_project_settings_dir().plus_file("editor_layout.cfg"));
if (err == OK) {
// Run the below code even if config->load returns an error, since we want the defaults to be set even if the file does not exist yet.
const String section = "editor_log";
for (Map<MessageType, LogFilter *>::Element *E = type_filter_map.front(); E; E = E->next()) {
E->get()->set_active(config->get_value(section, "log_filter_" + itos(E->key()), false));
E->get()->set_active(config->get_value(section, "log_filter_" + itos(E->key()), true));
}
collapse = config->get_value(section, "collapse", false);
@ -136,7 +136,6 @@ void EditorLog::_load_state() {
bool show_search = config->get_value(section, "show_search", true);
search_box->set_visible(show_search);
show_search_button->set_pressed(show_search);
}
is_loading_state = false;
}