Make property editor display dictionaries (read only)
This commit is contained in:
parent
02c041904f
commit
a542372642
1 changed files with 7 additions and 0 deletions
|
@ -3405,6 +3405,13 @@ void PropertyEditor::update_tree() {
|
||||||
if (show_type_icons)
|
if (show_type_icons)
|
||||||
item->set_icon(0, get_icon("ArrayData", "EditorIcons"));
|
item->set_icon(0, get_icon("ArrayData", "EditorIcons"));
|
||||||
|
|
||||||
|
} break;
|
||||||
|
case Variant::DICTIONARY: {
|
||||||
|
|
||||||
|
item->set_cell_mode(1, TreeItem::CELL_MODE_STRING);
|
||||||
|
item->set_editable(1, false);
|
||||||
|
item->set_text(1, obj->get(p.name).operator String());
|
||||||
|
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
case Variant::POOL_INT_ARRAY: {
|
case Variant::POOL_INT_ARRAY: {
|
||||||
|
|
Loading…
Reference in a new issue