remove not hovering lol

This commit is contained in:
2025-09-15 21:23:06 -04:00
parent 90cbc2524a
commit 21aa2b3501

View File

@@ -10,7 +10,6 @@ bitflags!(Sense, Senses, senses {
1 << 3; HoverStart, HOVER_START,
1 << 4; Hovering, HOVERING,
1 << 5; HoverEnd, HOVER_END,
1 << 6; NotHovering, NOT_HOVERING,
});
pub struct CursorState {
@@ -94,7 +93,6 @@ pub fn should_run(senses: Senses, cursor: ActivationState, hover: ActivationStat
Sense::HoverStart => hover.is_start(),
Sense::Hovering => hover.is_on(),
Sense::HoverEnd => hover.is_end(),
Sense::NotHovering => hover.is_off(),
} {
return true;
}