From 27c3f1896adb8d596d619a4f0c027ede4c4afcd7 Mon Sep 17 00:00:00 2001 From: "Wilson E. Alvarez" Date: Mon, 25 Nov 2024 17:50:04 -0500 Subject: [PATCH] Fix unhandled oneshot property hint Due to upstream change: https://github.com/godotengine/godot/commit/761a20f7a720864af1c43747f5ac31b9915d04e3 --- util/limbo_utility.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/limbo_utility.cpp b/util/limbo_utility.cpp index 381cfee4..81c5b53f 100644 --- a/util/limbo_utility.cpp +++ b/util/limbo_utility.cpp @@ -401,6 +401,9 @@ String LimboUtility::get_property_hint_text(PropertyHint p_hint) const { case PROPERTY_HINT_TOOL_BUTTON: { return "TOOL_BUTTON"; } + case PROPERTY_HINT_ONESHOT: { + return "ONESHOT"; + } case PROPERTY_HINT_LOCALE_ID: { return "LOCALE_ID"; }