Merge pull request #1022 from Ongy/master

Fix type in wlr_surface_get_extends
This commit is contained in:
emersion 2018-06-01 15:45:02 +01:00 committed by GitHub
commit d3670dfeff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1063,7 +1063,7 @@ static void handle_bounding_box_surface(struct wlr_surface *surface,
struct bound_acc *acc = data;
acc->min_x = min(x, acc->min_x);
acc->min_y = min(x, acc->min_y);
acc->min_y = min(y, acc->min_y);
acc->max_x = max(x + surface->current->width, acc->max_x);
acc->max_y = max(y + surface->current->height, acc->max_y);