mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 14:11:15 +00:00
-Fix to progress dialog, speding it up
-Fix potential deadlock in stream player -Fix collada to support broken files from ColladaMaya
This commit is contained in:
parent
93a6ec1e32
commit
81f62fb78c
8 changed files with 56 additions and 22 deletions
|
|
@ -4040,9 +4040,9 @@ void EditorNode::progress_add_task(const String& p_task,const String& p_label, i
|
|||
singleton->progress_dialog->add_task(p_task,p_label,p_steps);
|
||||
}
|
||||
|
||||
void EditorNode::progress_task_step(const String& p_task, const String& p_state, int p_step) {
|
||||
void EditorNode::progress_task_step(const String& p_task, const String& p_state, int p_step,bool p_force_redraw) {
|
||||
|
||||
singleton->progress_dialog->task_step(p_task,p_state,p_step);
|
||||
singleton->progress_dialog->task_step(p_task,p_state,p_step,p_force_redraw);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue