chore: update deps

This commit is contained in:
2025-08-08 13:14:11 +07:00
parent 8fca202c05
commit be660cb14b
4 changed files with 72 additions and 69 deletions

View File

@@ -10,7 +10,7 @@ pub trait InteractiveElementExt: InteractiveElement {
Self: Sized,
{
self.interactivity().on_click(move |event, window, cx| {
if event.up.click_count == 2 {
if event.click_count() == 2 {
listener(event, window, cx);
}
});