From 02e795277fd7ada1addce2148e7bef5839a3a11a Mon Sep 17 00:00:00 2001 From: GiGaGon <107241144+MeGaGiGaGon@users.noreply.github.com> Date: Sat, 21 Sep 2024 03:48:29 -0700 Subject: [PATCH] Fix error in Response::dragged docs (#5143) * [x] I have followed the instructions in the PR template --- crates/egui/src/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui/src/response.rs b/crates/egui/src/response.rs index dd4c631f..1378946b 100644 --- a/crates/egui/src/response.rs +++ b/crates/egui/src/response.rs @@ -343,7 +343,7 @@ impl Response { /// To find out which button(s), use [`Self::dragged_by`]. /// /// If the widget is only sensitive to drags, this is `true` as soon as the pointer presses down on it. - /// If the widget is also sensitive to drags, this won't be true until the pointer has moved a bit, + /// If the widget also senses clicks, this won't be true until the pointer has moved a bit, /// or the user has pressed down for long enough. /// See [`crate::input_state::PointerState::is_decidedly_dragging`] for details. ///