Fix getting view position

view->geom.{x,y} tell the compositor where to place the buffer
relatively to the view, view->{x,y} is the view's absolute position.
This commit is contained in:
tiosgz 2021-09-11 18:56:43 +00:00
parent fb86e3df22
commit 0d1972eacf

View file

@ -105,8 +105,8 @@ desktop_active_output(struct kiwmi_server *server)
break; // get first element of list break; // get first element of list
} }
double lx = view->geom.x + view->geom.width / 2; double lx = view->x + view->geom.width / 2;
double ly = view->geom.y + view->geom.height / 2; double ly = view->y + view->geom.height / 2;
struct wlr_output *wlr_output = struct wlr_output *wlr_output =
wlr_output_layout_output_at(server->desktop.output_layout, lx, ly); wlr_output_layout_output_at(server->desktop.output_layout, lx, ly);