Skip to content

Commit

Permalink
Fix unhandled oneshot property hint
Browse files Browse the repository at this point in the history
Due to upstream change:

	godotengine/godot@761a20f
  • Loading branch information
Rubonnek committed Nov 25, 2024
1 parent a00eb6d commit 27c3f18
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions util/limbo_utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
Expand Down

0 comments on commit 27c3f18

Please sign in to comment.