(&mut self)
| 110 | /// Sets pointer capture mode to Passthrough. |
| 111 | #[inline] |
| 112 | pub fn passthrough(&mut self) -> &mut Self { |
| 113 | self.config.pointer_capture_mode = PointerCaptureMode::Passthrough; |
| 114 | self |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | /// Builder for configuring overflow (clip/scroll) properties using a closure. |
no outgoing calls