1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Editor: Fix documentation for built-in scripts

This commit is contained in:
Danil Alexeev
2025-05-02 19:22:05 +03:00
parent 1cf573f44d
commit 0a07ae7bf1
6 changed files with 79 additions and 24 deletions

View File

@@ -924,7 +924,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.is_empty() || p_text.contains("::")) {
if (p_text.is_empty() || p_text.contains(" :: ")) {
return nullptr;
}