sway

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

commit a7c045a520811cc6a58c3ee605af16e9c9a96390
parent feb0195341b4caabfc3338bb29acf027b1e53780
Author: Luminarys <kizunanohikari@gmail.com>
Date:   Tue, 18 Aug 2015 16:24:01 -0500

Patched for wlc updates

Diffstat:
Msway/layout.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sway/layout.c b/sway/layout.c @@ -152,10 +152,10 @@ void arrange_windows(swayc_t *container, int width, int height) { geometry.origin.y = 0; geometry.size.w = parent->width; geometry.size.h = parent->height; - wlc_view_set_geometry(container->handle, &geometry); + wlc_view_set_geometry(container->handle, 0, &geometry); wlc_view_bring_to_front(container->handle); } else { - wlc_view_set_geometry(container->handle, &geometry); + wlc_view_set_geometry(container->handle, 0, &geometry); container->width = width; container->height = height; } @@ -232,10 +232,10 @@ void arrange_windows(swayc_t *container, int width, int height) { geometry.origin.y = 0; geometry.size.w = parent->width; geometry.size.h = parent->height; - wlc_view_set_geometry(view->handle, &geometry); + wlc_view_set_geometry(view->handle, 0, &geometry); wlc_view_bring_to_front(view->handle); } else { - wlc_view_set_geometry(view->handle, &geometry); + wlc_view_set_geometry(view->handle, 0, &geometry); view->width = width; view->height = height; // Bring the views to the front in order of the list, the list