mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -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 {
|
||||
let clicked = hovered && active;
|
||||
let clicked = hovered && active && self.input.mouse.could_be_click;
|
||||
InteractInfo {
|
||||
sense,
|
||||
rect,
|
||||
|
||||
Reference in New Issue
Block a user