summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties_array_dict.h
diff options
context:
space:
mode:
authorValentin Cocaud <v.cocaud@gmail.com>2024-02-14 14:14:21 +0100
committerValentin Cocaud <v.cocaud@gmail.com>2024-06-04 16:51:29 +0200
commitc31111f5ece9d62557a10c374d3f437e966723fa (patch)
treed3c3e8e3903754c5d7e98cded77aa668a361aa09 /editor/editor_properties_array_dict.h
parent7b63ac488e6e27b1d712bbd6b55afae46c0028ff (diff)
downloadredot-engine-c31111f5ece9d62557a10c374d3f437e966723fa.tar.gz
Editor: Focus value editor on type change in Dictionary and Array editors
Diffstat (limited to 'editor/editor_properties_array_dict.h')
-rw-r--r--editor/editor_properties_array_dict.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/editor/editor_properties_array_dict.h b/editor/editor_properties_array_dict.h
index 8b939ab0b0..267cb1e86d 100644
--- a/editor/editor_properties_array_dict.h
+++ b/editor/editor_properties_array_dict.h
@@ -49,6 +49,10 @@ protected:
bool _get(const StringName &p_name, Variant &r_ret) const;
public:
+ enum {
+ NOT_CHANGING_TYPE = -1,
+ };
+
void set_array(const Variant &p_array);
Variant get_array();
@@ -68,7 +72,8 @@ protected:
public:
enum {
- NEW_KEY_INDEX = -2,
+ NOT_CHANGING_TYPE = -3,
+ NEW_KEY_INDEX,
NEW_VALUE_INDEX,
};
@@ -111,7 +116,7 @@ class EditorPropertyArray : public EditorProperty {
int page_length = 20;
int page_index = 0;
- int changing_type_index;
+ int changing_type_index = EditorPropertyArrayObject::NOT_CHANGING_TYPE;
Button *edit = nullptr;
PanelContainer *container = nullptr;
VBoxContainer *property_vbox = nullptr;
@@ -206,7 +211,7 @@ class EditorPropertyDictionary : public EditorProperty {
Ref<EditorPropertyDictionaryObject> object;
int page_length = 20;
int page_index = 0;
- int changing_type_index;
+ int changing_type_index = EditorPropertyDictionaryObject::NOT_CHANGING_TYPE;
Button *edit = nullptr;
PanelContainer *container = nullptr;
VBoxContainer *property_vbox = nullptr;