| 325 | } |
| 326 | |
| 327 | void DependencyEditorOwners::_select_file(int p_idx) { |
| 328 | String fpath = owners->get_item_text(p_idx); |
| 329 | EditorNode::get_singleton()->load_scene_or_resource(fpath); |
| 330 | |
| 331 | hide(); |
| 332 | emit_signal(SceneStringName(confirmed)); |
| 333 | } |
| 334 | |
| 335 | void DependencyEditorOwners::_empty_clicked(const Vector2 &p_pos, MouseButton p_mouse_button_index) { |
| 336 | if (p_mouse_button_index != MouseButton::LEFT) { |
nothing calls this directly
no test coverage detected