From d24d5b50feafa908de7e6390c74dcb2c7fbc4d8d Mon Sep 17 00:00:00 2001 From: kobewi Date: Tue, 13 Jan 2026 12:24:12 +0100 Subject: [PATCH] Tweak quick open recursion error --- editor/gui/editor_quick_open_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/gui/editor_quick_open_dialog.cpp b/editor/gui/editor_quick_open_dialog.cpp index 61e06b6d5c9..52daad2a2c5 100644 --- a/editor/gui/editor_quick_open_dialog.cpp +++ b/editor/gui/editor_quick_open_dialog.cpp @@ -238,7 +238,7 @@ void EditorQuickOpenDialog::preview_property() { HashSet resources_found; resources_found.insert(res); if (EditorNode::find_recursive_resources(loaded_resource, resources_found)) { - EditorToaster::get_singleton()->popup_str(TTR("Recursion detected, quick preview failed."), EditorToaster::SEVERITY_ERROR); + EditorToaster::get_singleton()->popup_str(TTR("Recursion detected, Instant Preview failed."), EditorToaster::SEVERITY_ERROR); loaded_resource = Ref(); } }