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

Fix TabBar initialization issue and add tests

This commit is contained in:
kit
2024-09-20 15:40:55 -04:00
parent 2be730a05b
commit f2f34e9c50
7 changed files with 1557 additions and 6 deletions

View File

@@ -376,6 +376,9 @@ public:
bool check_false(const String &p_name) {
bool has = _signals.has(p_name);
if (has) {
MESSAGE("Signal has " << _signals[p_name] << " expected none.");
}
discard_signal(p_name);
return !has;
}