From cae111ffa431bccde67c67f9ac27d8a0e67c2faf Mon Sep 17 00:00:00 2001 From: "Wilson E. Alvarez" Date: Tue, 17 Sep 2024 13:14:01 -0400 Subject: [PATCH] Fix unhandled dictionary property hint Due to upstream change: https://github.com/godotengine/godot/commit/9853a691447cd4e279f48820067174d3833b0065 --- util/limbo_utility.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/limbo_utility.cpp b/util/limbo_utility.cpp index e5f16f6..845f63a 100644 --- a/util/limbo_utility.cpp +++ b/util/limbo_utility.cpp @@ -395,6 +395,9 @@ String LimboUtility::get_property_hint_text(PropertyHint p_hint) const { case PROPERTY_HINT_ARRAY_TYPE: { return "ARRAY_TYPE"; } + case PROPERTY_HINT_DICTIONARY_TYPE: { + return "DICTIONARY_TYPE"; + } case PROPERTY_HINT_LOCALE_ID: { return "LOCALE_ID"; }