Show idle cursor when hovering a disabled Button

This commit is contained in:
Héctor Ramón Jiménez 2020-06-27 03:40:04 +02:00
parent 754b8f819e
commit b5d842f877

View File

@ -103,7 +103,7 @@ where
} else {
content
},
if is_mouse_over {
if is_mouse_over && !is_disabled {
mouse::Interaction::Pointer
} else {
mouse::Interaction::default()