From e7291a0e3a5bb6fb0c95a5d3ea2929797b383029 Mon Sep 17 00:00:00 2001
From: "Wilson E. Alvarez" <wilson.e.alvarez@rubonnek.com>
Date: Mon, 30 Sep 2024 08:00:48 -0400
Subject: [PATCH] Fix unhandled PROPERTY_HINT_TOOL_BUTTON warning

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 f4082b0..83b6bf8 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";
 		}