diff options
author | Micky <micheledevita2@gmail.com> | 2022-10-20 22:27:52 +0200 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2022-11-15 15:28:49 +0100 |
commit | b4324e7a4516060d7491fbc11c33546b354749a3 (patch) | |
tree | e52f0e7a9050f1abc45f4e5e797cf5e9885351b4 /core/object | |
parent | 91fcc3986eca5331b4cc44a67adcc2f29a49eb66 (diff) |
Remove `PROPERTY_HINT_IMAGE_COMPRESS` constants
These were used in 3.x but there's no reference of them in the codebase, at all.
Diffstat (limited to 'core/object')
-rw-r--r-- | core/object/object.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/object/object.h b/core/object/object.h index 7bb88998a2..16ad7b8832 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -71,8 +71,6 @@ enum PropertyHint { PROPERTY_HINT_EXPRESSION, ///< used for string properties that can contain multiple lines PROPERTY_HINT_PLACEHOLDER_TEXT, ///< used to set a placeholder text for string properties PROPERTY_HINT_COLOR_NO_ALPHA, ///< used for ignoring alpha component when editing a color - PROPERTY_HINT_IMAGE_COMPRESS_LOSSY, - PROPERTY_HINT_IMAGE_COMPRESS_LOSSLESS, PROPERTY_HINT_OBJECT_ID, PROPERTY_HINT_TYPE_STRING, ///< a type string, the hint is the base type to choose PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE, ///< so something else can provide this (used in scripts) |