From 274064ae7f4407977147b3d0c873f5ce04424421 Mon Sep 17 00:00:00 2001 From: hakro Date: Tue, 3 Dec 2024 20:06:34 +0100 Subject: [PATCH] Ignore custom tooltip if its text is empty in signals tab --- editor/connections_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/connections_dialog.cpp b/editor/connections_dialog.cpp index d76c324be0..b96c715bda 100644 --- a/editor/connections_dialog.cpp +++ b/editor/connections_dialog.cpp @@ -907,7 +907,7 @@ ConnectDialog::~ConnectDialog() { Control *ConnectionsDockTree::make_custom_tooltip(const String &p_text) const { // If it's not a doc tooltip, fallback to the default one. - if (p_text.contains("::")) { + if (p_text.is_empty() || p_text.contains("::")) { return nullptr; }