1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-05 13:53:38 +00:00

xcb: fix window size hints;

This commit is contained in:
bjorn 2023-09-09 02:48:14 -07:00
parent 840455d123
commit 7429f88e4f

View file

@ -366,13 +366,13 @@ bool os_window_open(const os_window_config* config) {
// Resizable
if (!config->resizable) {
struct {
long flags;
int x, y, width, height;
int min_width, min_height, max_width, max_height;
int width_inc, height_inc;
int min_aspect_num, min_aspect_den, max_aspect_num, max_aspect_den;
int base_width, base_height;
int gravity;
uint32_t flags;
int32_t x, y, width, height;
int32_t min_width, min_height, max_width, max_height;
int32_t width_inc, height_inc;
int32_t min_aspect_num, min_aspect_den, max_aspect_num, max_aspect_den;
int32_t base_width, base_height;
int32_t gravity;
} hints = {
.flags = (1 << 3) | (1 << 4) | (1 << 5), // Size | MinSize | MaxSize
.width = w,