sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 232940f81302ca7c07c08744ada0be0fa37dd2ff
parent b7f4607544d51811e986b98c8c3eda7ed7c68b1a
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat, 22 Aug 2015 14:03:51 -0400

Whoops

Regards to @Cloudef

Diffstat:
Msway/container.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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;