diff --git a/sway/container.c b/sway/container.c index 7f6fcbc6e..5d5449348 100644 --- a/sway/container.c +++ b/sway/container.c @@ -74,7 +74,7 @@ swayc_t *new_output(wlc_handle handle) { if (oc && oc->width != -1 && oc->height != -1) { output->width = oc->width; output->height = oc->height; - struct wlc_size new_size = { .w = oc->width, .h = oc->width }; + struct wlc_size new_size = { .w = oc->width, .h = oc->height }; wlc_output_set_resolution(handle, &new_size); } else { output->width = size->w;