| 2112 | } |
| 2113 | |
| 2114 | void RuntimeNodeSelect::_queue_selection_update() { |
| 2115 | if (has_selection && selection_visible) { |
| 2116 | if (SceneTree::get_singleton()->is_suspended()) { |
| 2117 | _update_selection(); |
| 2118 | } else { |
| 2119 | selection_update_queued = true; |
| 2120 | } |
| 2121 | } |
| 2122 | } |
| 2123 | |
| 2124 | void RuntimeNodeSelect::_update_selection() { |
| 2125 | Window *root = SceneTree::get_singleton()->get_root(); |
no test coverage detected