Skip to content

Commit

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

	godotengine/godot@9853a69
  • Loading branch information
Rubonnek committed Sep 17, 2024
1 parent abe4d03 commit b217c80
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 @@ -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";
}
Expand Down

0 comments on commit b217c80

Please sign in to comment.