Set the fractional padding added around box-zoom selections.
(&mut self, padding: f64)
| 267 | |
| 268 | /// Set the fractional padding added around box-zoom selections. |
| 269 | pub fn set_selection_padding(&mut self, padding: f64) -> &mut Self { |
| 270 | self.selection_padding = padding.max(0.0); |
| 271 | self |
| 272 | } |
| 273 | |
| 274 | /// Remove all drag bindings for a given action. |
| 275 | pub fn remove_drag_action(&mut self, action: DragAction) -> &mut Self { |
nothing calls this directly
no outgoing calls
no test coverage detected