From 4267fc079bce07ea1b56ce8a460ed238241b22b3 Mon Sep 17 00:00:00 2001 From: xacer Date: Tue, 18 Apr 2023 07:11:05 -0700 Subject: [PATCH] bug: hide triple_clicked in documentation (#2867) If `Response.clicked` and `Response.double_clicked` are hidden in the documentation, why isn't `Response.triple_clicked` --- crates/egui/src/response.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/egui/src/response.rs b/crates/egui/src/response.rs index ddab8d4e..ac408823 100644 --- a/crates/egui/src/response.rs +++ b/crates/egui/src/response.rs @@ -57,6 +57,7 @@ pub struct Response { pub double_clicked: [bool; NUM_POINTER_BUTTONS], /// The thing was triple-clicked. + #[doc(hidden)] pub triple_clicked: [bool; NUM_POINTER_BUTTONS], /// The widgets is being dragged