Skip to content

Commit

Permalink
Merge pull request #80135 from KoBeWi/A_NumbER_Is_REQuIrEd
Browse files Browse the repository at this point in the history
Ignore null "id" in tile source proxy
  • Loading branch information
akien-mga committed Aug 2, 2023
2 parents 6adc25e + 91328a8 commit f823bcc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion editor/plugins/tiles/tile_set_editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1002,10 +1002,15 @@ bool TileSourceInspectorPlugin::can_handle(Object *p_object) {

bool TileSourceInspectorPlugin::parse_property(Object *p_object, const Variant::Type p_type, const String &p_path, const PropertyHint p_hint, const String &p_hint_text, const BitField<PropertyUsageFlags> p_usage, const bool p_wide) {
if (p_path == "id") {
const Variant value = p_object->get("id");
if (value.get_type() == Variant::NIL) { // May happen if the object is not yet initialized.
return true;
}

HBoxContainer *hbox = memnew(HBoxContainer);
hbox->set_alignment(BoxContainer::ALIGNMENT_CENTER);

id_label = memnew(Label(vformat(TTR("ID: %d"), p_object->get("id"))));
id_label = memnew(Label(vformat(TTR("ID: %d"), value)));
hbox->add_child(id_label);

Button *button = memnew(Button(TTR("Edit")));
Expand Down

0 comments on commit f823bcc

Please sign in to comment.