diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-02 14:16:53 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-02 14:16:53 +0100 |
commit | 632b3e974c7729b6813b32d3cd9fc6a81bf59007 (patch) | |
tree | 8ed6c6f1a75831bb73044f9c5d83866839ab275a /core | |
parent | 31473a68ef5d6ef3317ae205dc035a9dc2483e66 (diff) | |
parent | 9a1d87f66f8b20046f68f6750a38d60290f605a4 (diff) |
Merge pull request #67693 from Mickeon/slight-hint-shuffling
Fix unordered values of PROPERTY_HINT_INT_IS_POINTER & ARRAY_TYPE
Diffstat (limited to 'core')
-rw-r--r-- | core/object/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object/object.h b/core/object/object.h index fa3003cc1f..8c647cda40 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -89,8 +89,8 @@ enum PropertyHint { PROPERTY_HINT_SAVE_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,". This opens a save dialog PROPERTY_HINT_GLOBAL_SAVE_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,". This opens a save dialog PROPERTY_HINT_INT_IS_OBJECTID, - PROPERTY_HINT_ARRAY_TYPE, PROPERTY_HINT_INT_IS_POINTER, + PROPERTY_HINT_ARRAY_TYPE, PROPERTY_HINT_LOCALE_ID, PROPERTY_HINT_LOCALIZABLE_STRING, PROPERTY_HINT_NODE_TYPE, ///< a node object type |