theme: fix spelling of LAB_BS_HOVERED

This commit is contained in:
John Lindgren 2025-09-06 11:43:48 -04:00
parent 98c77cd6a7
commit 502473f343
3 changed files with 16 additions and 16 deletions

View file

@ -510,12 +510,12 @@ ssd_update_button_hover(struct wlr_scene_node *node,
/* Disable old hover */
if (hover_state->button) {
update_button_state(hover_state->button, LAB_BS_HOVERD, false);
update_button_state(hover_state->button, LAB_BS_HOVERED, false);
hover_state->view = NULL;
hover_state->button = NULL;
}
if (button) {
update_button_state(button, LAB_BS_HOVERD, true);
update_button_state(button, LAB_BS_HOVERED, true);
hover_state->view = button->base.view;
hover_state->button = button;
}