From cb84ff2ec7d8d41397afb777ff5761443326e602 Mon Sep 17 00:00:00 2001 From: Enzo Novoselic <41305715+StarryWorm@users.noreply.github.com> Date: Mon, 27 Apr 2026 13:09:25 -0400 Subject: [PATCH] Always emit post-enter translation notification --- scene/main/node.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scene/main/node.cpp b/scene/main/node.cpp index c2b20d798f..c46ffdeac5 100644 --- a/scene/main/node.cpp +++ b/scene/main/node.cpp @@ -186,9 +186,7 @@ void Node::_notification(int p_notification) { } break; case NOTIFICATION_POST_ENTER_TREE: { - if (data.auto_translate_mode != AUTO_TRANSLATE_MODE_DISABLED) { - notification(NOTIFICATION_TRANSLATION_CHANGED); - } + notification(NOTIFICATION_TRANSLATION_CHANGED); } break; case NOTIFICATION_EXIT_TREE: {