(handle: u32, v: bool)
| 216 | } |
| 217 | |
| 218 | pub fn set_visible(handle: u32, v: bool) { |
| 219 | mark_dirty(handle, DIRTY_VISIBILITY, |n| n.visible = v); |
| 220 | } |
| 221 | pub fn set_parent(handle: u32, parent: u32) { |
| 222 | mark_dirty(handle, DIRTY_PARENT, |n| n.parent = parent); |
| 223 | } |
no test coverage detected