summaryrefslogtreecommitdiffstats
path: root/editor/plugins
diff options
context:
space:
mode:
authorBad Sector <badsector@runtimeterror.com>2024-11-21 03:00:21 +0200
committerBad Sector <badsector@runtimeterror.com>2024-11-21 21:31:02 +0200
commit5bca028e2bd5cde8a9a06fc1a4469cafa28d362b (patch)
tree746a80ea3d514ba711a0834de8d9df292d151162 /editor/plugins
parent9e6098432aac35bae42c9089a29ba2a80320d823 (diff)
downloadredot-engine-5bca028e2bd5cde8a9a06fc1a4469cafa28d362b.tar.gz
Add lightmap bake cancelling
Diffstat (limited to 'editor/plugins')
-rw-r--r--editor/plugins/lightmap_gi_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/lightmap_gi_editor_plugin.cpp b/editor/plugins/lightmap_gi_editor_plugin.cpp
index 4cff3504f5..3f21d5d11c 100644
--- a/editor/plugins/lightmap_gi_editor_plugin.cpp
+++ b/editor/plugins/lightmap_gi_editor_plugin.cpp
@@ -152,7 +152,7 @@ EditorProgress *LightmapGIEditorPlugin::tmp_progress = nullptr;
bool LightmapGIEditorPlugin::bake_func_step(float p_progress, const String &p_description, void *, bool p_refresh) {
if (!tmp_progress) {
- tmp_progress = memnew(EditorProgress("bake_lightmaps", TTR("Bake Lightmaps"), 1000, false));
+ tmp_progress = memnew(EditorProgress("bake_lightmaps", TTR("Bake Lightmaps"), 1000, true));
ERR_FAIL_NULL_V(tmp_progress, false);
}
return tmp_progress->step(p_description, p_progress * 1000, p_refresh);