True if there is a visible selection (dragging or finalized).
(&self)
| 55 | |
| 56 | /// True if there is a visible selection (dragging or finalized). |
| 57 | pub fn is_active(&self) -> bool { |
| 58 | self.anchor.is_some() && self.cursor.is_some() |
| 59 | } |
| 60 | |
| 61 | /// True if the user is currently dragging. |
| 62 | pub fn is_selecting(&self) -> bool { |
no outgoing calls
no test coverage detected