Browse Source

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`
pull/2920/head
xacer 2 years ago
committed by GitHub
parent
commit
4267fc079b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      crates/egui/src/response.rs

1
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

Loading…
Cancel
Save