mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-05 13:05:59 +01:00
session-lock-v1: drop negative buffer size checks
The buffer size will never be negative, and the negative checks are distracting from the real checks here.
This commit is contained in:
parent
dc3b2b9439
commit
aa32d1a127
1 changed files with 1 additions and 2 deletions
|
@ -170,8 +170,7 @@ static void lock_surface_role_commit(struct wlr_surface *surface) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (surface->current.width < 0 || surface->current.height < 0 ||
|
||||
(uint32_t)surface->current.width != lock_surface->pending.width ||
|
||||
if ((uint32_t)surface->current.width != lock_surface->pending.width ||
|
||||
(uint32_t)surface->current.height != lock_surface->pending.height) {
|
||||
wl_resource_post_error(lock_surface->resource,
|
||||
EXT_SESSION_LOCK_SURFACE_V1_ERROR_DIMENSIONS_MISMATCH,
|
||||
|
|
Loading…
Reference in a new issue