(&self, child: &dyn Element)
| 303 | } |
| 304 | |
| 305 | fn add(&self, child: &dyn Element) { |
| 306 | //if the internal controls add them normally |
| 307 | if !self.state.borrow().ready { |
| 308 | // self.base.add(child); |
| 309 | } else { |
| 310 | self.container.add(child); |
| 311 | |
| 312 | self.refresh_scroll(); |
| 313 | |
| 314 | child.set_clip(Some(self.id())); |
| 315 | // depth = depth; |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | fn remove(&self, child: Id) { |
| 320 | // self.base.remove(child); |
nothing calls this directly
no test coverage detected