diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-02-07 01:47:35 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-02-07 02:04:10 +0100 |
commit | 8be51252f616f5b96415df607f2f452f16242b9f (patch) | |
tree | fa16ceccd6c3f5c2a8ce35c4f080988d8cede20a /editor/project_manager.h | |
parent | 89a43d9c2e7f62eef31a32bf2c68f40412c7dd12 (diff) | |
download | redot-engine-8be51252f616f5b96415df607f2f452f16242b9f.tar.gz |
Display loading text while the project manager is loading
This hints the user that the project manager is currently busy
loading the project. This is important for the HTML5 editor as the
current feedback isn't very obvious.
This also removes the unused `_exit_dialog` function.
Diffstat (limited to 'editor/project_manager.h')
-rw-r--r-- | editor/project_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/project_manager.h b/editor/project_manager.h index db8cb8410c..6dc0e67cba 100644 --- a/editor/project_manager.h +++ b/editor/project_manager.h @@ -54,6 +54,7 @@ class ProjectManager : public Control { ProjectList *_project_list; LineEdit *search_box; + Label *loading_label; OptionButton *filter_option; Button *run_btn; @@ -98,7 +99,6 @@ class ProjectManager : public Control { void _update_project_buttons(); void _language_selected(int p_id); void _restart_confirm(); - void _exit_dialog(); void _confirm_update_settings(); void _nonempty_confirmation_ok_pressed(); |