Return whether a mouse drag trigger is bound to an action.
(&self, button: mouse::Button, action: DragAction)
| 148 | |
| 149 | /// Return whether a mouse drag trigger is bound to an action. |
| 150 | pub fn drag_is_bound(&self, button: mouse::Button, action: DragAction) -> bool { |
| 151 | self.drag_action(button) == Some(action) |
| 152 | } |
| 153 | |
| 154 | /// Bind a scroll trigger to an action. |
| 155 | pub fn bind_scroll( |
no test coverage detected