summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties_array_dict.h
diff options
context:
space:
mode:
authorajreckof <tbonhoure@ymail.com>2024-04-25 23:16:18 +0200
committerajreckof <tbonhoure@ymail.com>2024-05-03 10:56:23 +0200
commitcba96066115626d5e7d86caf47284c7b83e59dfb (patch)
treebc7df2d6f650e8227ee0501d2244800b5ddcc1f6 /editor/editor_properties_array_dict.h
parent479b2ab777188e21109bcfe803c2599c35bb9042 (diff)
downloadredot-engine-cba96066115626d5e7d86caf47284c7b83e59dfb.tar.gz
Add colored margin in Inspector for arrays and dictionaries.
Apply suggestions from code review Co-Authored-By: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-Authored-By: Tomek <kobewi4e@gmail.com>
Diffstat (limited to 'editor/editor_properties_array_dict.h')
-rw-r--r--editor/editor_properties_array_dict.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/editor/editor_properties_array_dict.h b/editor/editor_properties_array_dict.h
index b00f85c93c..8b939ab0b0 100644
--- a/editor/editor_properties_array_dict.h
+++ b/editor/editor_properties_array_dict.h
@@ -113,7 +113,7 @@ class EditorPropertyArray : public EditorProperty {
int page_index = 0;
int changing_type_index;
Button *edit = nullptr;
- MarginContainer *container = nullptr;
+ PanelContainer *container = nullptr;
VBoxContainer *property_vbox = nullptr;
EditorSpinSlider *size_slider = nullptr;
Button *button_add_item = nullptr;
@@ -165,6 +165,7 @@ protected:
public:
void setup(Variant::Type p_array_type, const String &p_hint_string = "");
virtual void update_property() override;
+ virtual bool is_colored(ColorationMode p_mode) override;
EditorPropertyArray();
};
@@ -207,7 +208,7 @@ class EditorPropertyDictionary : public EditorProperty {
int page_index = 0;
int changing_type_index;
Button *edit = nullptr;
- MarginContainer *container = nullptr;
+ PanelContainer *container = nullptr;
VBoxContainer *property_vbox = nullptr;
PanelContainer *add_panel = nullptr;
EditorSpinSlider *size_sliderv = nullptr;
@@ -233,6 +234,7 @@ protected:
public:
void setup(PropertyHint p_hint);
virtual void update_property() override;
+ virtual bool is_colored(ColorationMode p_mode) override;
EditorPropertyDictionary();
};