_dx: f32 =0.0, _dy: f32 =0.0, _dw: f32 =0.0, _dh: f32 =0.0
(&self, dx: f32, dy: f32, dw: f32, dh: f32)
| 345 | |
| 346 | // _dx: f32 =0.0, _dy: f32 =0.0, _dw: f32 =0.0, _dh: f32 =0.0 |
| 347 | fn bounds_changed(&self, dx: f32, dy: f32, dw: f32, dh: f32) { |
| 348 | // self.base.bounds_changed(_dx, _dy, _dw, _dh); |
| 349 | |
| 350 | self.refresh_scroll(); |
| 351 | |
| 352 | // if self.scrollh.is_some() { |
| 353 | self.scrollh.set_y_local(self.h() - 8.0); |
| 354 | // } |
| 355 | |
| 356 | // if self.scrollv.is_some() { |
| 357 | self.scrollv.set_x_local(self.w() - 8.0); |
| 358 | // } |
| 359 | } |
| 360 | |
| 361 | fn node(&self) -> Option<Node> { |
| 362 | Some(self.node) |
nothing calls this directly
no test coverage detected