Merge pull request #1327 from RyanDwyer/xwm-unset-minmax-hints

xwm: Unset min/max size hints if they're not used
This commit is contained in:
Drew DeVault 2018-10-22 14:51:06 +02:00 committed by GitHub
commit c55d1542fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -560,6 +560,15 @@ static void read_surface_normal_hints(struct wlr_xwm *xwm,
memcpy(xsurface->size_hints, &size_hints,
sizeof(struct wlr_xwayland_surface_size_hints));
if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) == 0) {
xsurface->size_hints->min_width = -1;
xsurface->size_hints->min_height = -1;
}
if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MAX_SIZE) == 0) {
xsurface->size_hints->max_width = -1;
xsurface->size_hints->max_height = -1;
}
wlr_log(WLR_DEBUG, "WM_NORMAL_HINTS (%d)", reply->value_len);
}
#else