Remove a mouse double-click binding.
(&mut self, button: mouse::Button)
| 213 | |
| 214 | /// Remove a mouse double-click binding. |
| 215 | pub fn unbind_double_click(&mut self, button: mouse::Button) -> Option<ClickAction> { |
| 216 | self.double_click.remove(&button) |
| 217 | } |
| 218 | |
| 219 | /// Return the action bound to a mouse double-click trigger. |
| 220 | pub fn double_click_action(&self, button: mouse::Button) -> Option<ClickAction> { |