We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
drag_released*
1 parent 15b0ef3 commit 2342788Copy full SHA for 2342788
crates/egui/src/response.rs
@@ -361,13 +361,13 @@ impl Response {
361
362
/// The widget was being dragged, but now it has been released.
363
#[inline]
364
- #[deprecated = "Renamed 'dragged_stopped'"]
+ #[deprecated = "Renamed 'drag_stopped'"]
365
pub fn drag_released(&self) -> bool {
366
self.drag_stopped
367
}
368
369
/// The widget was being dragged by the button, but now it has been released.
370
- #[deprecated = "Renamed 'dragged_stopped_by'"]
+ #[deprecated = "Renamed 'drag_stopped_by'"]
371
pub fn drag_released_by(&self, button: PointerButton) -> bool {
372
self.drag_stopped_by(button)
373
0 commit comments