1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-17 14:11:06 +00:00

Merge pull request #19244 from Chaosus/settingsperformance_and_colordeferred

Increases settings apply speed and added deferred color setting to ColorPicker
This commit is contained in:
Max Hilbrunner
2018-07-03 17:01:23 +02:00
committed by GitHub
6 changed files with 34 additions and 5 deletions

View File

@@ -1985,7 +1985,7 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) {
tab_container->add_child(plugin_settings);
timer = memnew(Timer);
timer->set_wait_time(1.5);
timer->set_wait_time(0.1);
timer->connect("timeout", ProjectSettings::get_singleton(), "save");
timer->set_one_shot(true);
add_child(timer);