Dictionary editing does the comeback to the inspector, fixes #19046

This commit is contained in:
Juan Linietsky
2018-05-19 16:09:38 -03:00
parent 228b09bafb
commit eded061668
6 changed files with 598 additions and 3 deletions

View File

@ -39,6 +39,15 @@
#include "editor/scene_tree_editor.h"
#include "scene/gui/color_picker.h"
class EditorPropertyNil : public EditorProperty {
GDCLASS(EditorPropertyNil, EditorProperty)
LineEdit *text;
public:
virtual void update_property();
EditorPropertyNil();
};
class EditorPropertyText : public EditorProperty {
GDCLASS(EditorPropertyText, EditorProperty)
LineEdit *text;