diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2020-06-10 17:31:58 +0300 |
---|---|---|
committer | Yuri Roubinsky <chaosus89@gmail.com> | 2020-06-10 18:03:32 +0300 |
commit | f6ed4656130228112b45f3b3b89ccfcc6ddabbdd (patch) | |
tree | d7762cdfec5306125a082880d9b750fbac8f90f5 /editor/property_editor.h | |
parent | 1aeb88205d0e1672670bea8c210be6b3e1269fe1 (diff) | |
download | redot-engine-f6ed4656130228112b45f3b3b89ccfcc6ddabbdd.tar.gz |
Fix custom property editor layout
Diffstat (limited to 'editor/property_editor.h')
-rw-r--r-- | editor/property_editor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/property_editor.h b/editor/property_editor.h index 5b7db3b83f..75c6fd372b 100644 --- a/editor/property_editor.h +++ b/editor/property_editor.h @@ -100,6 +100,8 @@ class CustomPropertyEditor : public PopupPanel { List<String> field_names; int hint; String hint_text; + HBoxContainer *value_hboxes[MAX_VALUE_EDITORS / 4]; + VBoxContainer *value_vbox; LineEdit *value_editor[MAX_VALUE_EDITORS]; int focused_value_editor; Label *value_label[MAX_VALUE_EDITORS]; |