implement handling for Client, Frame, and Root/Desktop (conflated for now) mouse contexts

This commit is contained in:
bi4k8 2021-12-01 22:17:04 +00:00 committed by Johan Malm
parent 4f6297d1ad
commit b008917895
3 changed files with 18 additions and 1 deletions

View file

@ -135,6 +135,12 @@ ssd_box(struct view *view, enum ssd_part_type type)
box.width = theme->border_width + INVISIBLE_MARGIN;
box.height = view->h;
break;
case LAB_SSD_CLIENT:
box.x = view->x;
box.y = view->y;
box.width = view->w;
box.height = view->h;
break;
default:
break;
}