-Remove color operator clamping, which is unnecesary. Fixes #15184, fixes #14686.

-Refresh progress bar less often, makes baking, exporting, etc. faster.
This commit is contained in:
Juan Linietsky 2018-01-12 00:08:32 -03:00
parent c48aab2f05
commit 2cde466ebd
5 changed files with 62 additions and 63 deletions

View file

@ -200,7 +200,7 @@ bool ProgressDialog::task_step(const String &p_task, const String &p_state, int
if (!p_force_redraw) {
uint64_t tus = OS::get_singleton()->get_ticks_usec();
if (tus - last_progress_tick < 50000) //50ms
if (tus - last_progress_tick < 200000) //200ms
return cancelled;
}