Fix mouse warping interaction with layout coords

This commit is contained in:
Drew DeVault 2018-05-29 20:50:02 -04:00 committed by Ryan Dwyer
parent c9f8d35ca9
commit e605dc43bb
1 changed files with 2 additions and 4 deletions

View File

@ -601,10 +601,8 @@ void seat_set_focus_warp(struct sway_seat *seat,
if (config->mouse_warping && warp) {
if (new_output && last_output && new_output != last_output) {
double x = new_output->x + container->x +
container->width / 2.0;
double y = new_output->y + container->y +
container->height / 2.0;
double x = container->x + container->width / 2.0;
double y = container->y + container->height / 2.0;
struct wlr_output *wlr_output =
new_output->sway_output->wlr_output;
if (!wlr_output_layout_contains_point(