Add in-window on-move-out mouse handler concept

This commit is contained in:
Julia 2023-01-19 12:34:13 -05:00
parent 5189dea3d5
commit ad1947fa50
5 changed files with 66 additions and 4 deletions

View file

@ -190,6 +190,9 @@ impl EditorElement {
}
}
})
.on_move_out(|e, cx| {
println!("on move out");
})
.on_scroll({
let position_map = position_map.clone();
move |e, cx| {