mirror of
https://github.com/emilk/egui.git
synced 2026-08-31 13:50:04 -04:00
[interact] bug fix: fix drags sometimes being interpreted as clicks
This commit is contained in:
@@ -426,7 +426,7 @@ impl Context {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if self.input.mouse.released {
|
} else if self.input.mouse.released {
|
||||||
let clicked = hovered && active;
|
let clicked = hovered && active && self.input.mouse.could_be_click;
|
||||||
InteractInfo {
|
InteractInfo {
|
||||||
sense,
|
sense,
|
||||||
rect,
|
rect,
|
||||||
|
|||||||
Reference in New Issue
Block a user