diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-07-27 12:59:41 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2017-07-27 13:12:28 +0700 |
commit | 5adb94e72694fd4c4b80be85b3adf9a4a7d6c45b (patch) | |
tree | f461876c6a8049229f10ad25fdfe209cda7b7590 | |
parent | 9aecc83cda32c5ede07b3976ed4ab2e4a2e90bc7 (diff) |
PropertyEditor: display "Off" if property is false
-rw-r--r-- | editor/property_editor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/property_editor.cpp b/editor/property_editor.cpp index c2af2445cc..71afa8ac79 100644 --- a/editor/property_editor.cpp +++ b/editor/property_editor.cpp @@ -2199,6 +2199,7 @@ void PropertyEditor::set_item_text(TreeItem *p_item, int p_type, const String &p case Variant::BOOL: { p_item->set_checked(1, obj->get(p_name)); + p_item->set_text(1, obj->get(p_name) ? TTR("On") : TTR("Off")); } break; case Variant::REAL: case Variant::INT: { @@ -3141,7 +3142,7 @@ void PropertyEditor::update_tree() { case Variant::BOOL: { item->set_cell_mode(1, TreeItem::CELL_MODE_CHECK); - item->set_text(1, TTR("On")); + item->set_text(1, obj->get(p.name) ? TTR("On") : TTR("Off")); item->set_tooltip(1, obj->get(p.name) ? "True" : "False"); item->set_checked(1, obj->get(p.name)); if (show_type_icons) |