| 888 | } |
| 889 | |
| 890 | void OrphanResourcesDialog::_button_pressed(Object *p_item, int p_column, int p_id, MouseButton p_button) { |
| 891 | if (p_button != MouseButton::LEFT) { |
| 892 | return; |
| 893 | } |
| 894 | TreeItem *ti = Object::cast_to<TreeItem>(p_item); |
| 895 | |
| 896 | String path = ti->get_metadata(0); |
| 897 | dep_edit->edit(path); |
| 898 | } |
| 899 | |
| 900 | OrphanResourcesDialog::OrphanResourcesDialog() { |
| 901 | set_title(TTR("Orphan Resource Explorer")); |
nothing calls this directly
no test coverage detected