sway

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

commit ed2cedb54430af0c1400846cf36c9cf539801067
parent eca029f218fbb54ddf7316845be5d296e834358e
Author: Tony Crisci <tony@dubstepdish.com>
Date:   Thu, 29 Mar 2018 17:13:37 -0400

rename layout init

Diffstat:
Msway/main.c | 2+-
Msway/tree/layout.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sway/main.c b/sway/main.c @@ -382,7 +382,7 @@ int main(int argc, char **argv) { wlr_log(L_INFO, "Starting sway version " SWAY_VERSION); - init_layout(); + layout_init(); if (!server_init(&server)) { return 1; diff --git a/sway/tree/layout.c b/sway/tree/layout.c @@ -43,7 +43,7 @@ static void output_layout_change_notify(struct wl_listener *listener, void *data container_arrange_windows(&root_container, -1, -1); } -void init_layout(void) { +void layout_init(void) { root_container.id = 0; // normally assigned in new_swayc() root_container.type = C_ROOT; root_container.layout = L_NONE;