Fix unhandled dictionary property hint

Due to upstream change:

	9853a69144
This commit is contained in:
Wilson E. Alvarez 2024-09-17 13:14:01 -04:00
parent abe4d03656
commit b217c803e3
No known key found for this signature in database
GPG Key ID: A32174A3D2ED3F9E
1 changed files with 3 additions and 0 deletions

View File

@ -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";
}