From b5fe6bb77fc3f160b03667ff8ab42aa1a91c70f7 Mon Sep 17 00:00:00 2001 From: "Wilson E. Alvarez" Date: Mon, 30 Sep 2024 08:00:48 -0400 Subject: [PATCH] Fix unhandled tool button property hint Due to upstream change: https://github.com/godotengine/godot/commit/85dfd896536ff04dba4afd7d461a28e0ac4b9aee --- util/limbo_utility.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/limbo_utility.cpp b/util/limbo_utility.cpp index 845f63a..381cfee 100644 --- a/util/limbo_utility.cpp +++ b/util/limbo_utility.cpp @@ -398,6 +398,9 @@ String LimboUtility::get_property_hint_text(PropertyHint p_hint) const { case PROPERTY_HINT_DICTIONARY_TYPE: { return "DICTIONARY_TYPE"; } + case PROPERTY_HINT_TOOL_BUTTON: { + return "TOOL_BUTTON"; + } case PROPERTY_HINT_LOCALE_ID: { return "LOCALE_ID"; }