@@ -282,7 +282,7 @@ fn update<Message: Clone, Renderer>(
282282 | Event :: Touch ( touch:: Event :: FingerMoved { id : _, position } ) = event
283283 {
284284 let state: & mut State = tree. state . downcast_mut ( ) ;
285- handle_mouse_move ( widget, state, shell, * position, layout. bounds ( ) )
285+ handle_mouse_move ( widget, state, shell, * position, layout. bounds ( ) ) ;
286286 }
287287
288288 if !cursor. is_over ( layout. bounds ( ) ) {
@@ -370,15 +370,15 @@ fn handle_mouse_move<Message: Clone, Renderer>(
370370 widget. on_mouse_exit . as_mut ( ) ,
371371 ) {
372372 ( Some ( enter_msg) , _, _) if mouse_in_area && !state. mouse_in_area => {
373- shell. publish ( enter_msg. clone ( ) )
373+ shell. publish ( enter_msg. clone ( ) ) ;
374374 }
375375 ( _, Some ( build_move_msg) , _)
376376 if mouse_in_area && state. mouse_in_area =>
377377 {
378- shell. publish ( build_move_msg ( position) )
378+ shell. publish ( build_move_msg ( position) ) ;
379379 }
380380 ( _, _, Some ( exit_msg) ) if !mouse_in_area && state. mouse_in_area => {
381- shell. publish ( exit_msg. clone ( ) )
381+ shell. publish ( exit_msg. clone ( ) ) ;
382382 }
383383 _ => { }
384384 }
0 commit comments