mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
Fix type in wlr_surface_get_extends
This commit is contained in:
parent
84c09152af
commit
7b07b3f95d
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue