diff options
author | Drew DeVault <[email protected]> | 2018-04-26 11:38:52 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-04-26 11:38:52 +0200 |
commit | d94bb78ff3ade39cc848d0acfd571b9ac6917868 (patch) | |
tree | a61a0fb433462d42b48a23fb58dd3b2a3bc778d8 /sway/ipc-json.c | |
parent | 7ac770f3c0d4aa4b38650ad5ec7d1f5b7e70028a (diff) | |
parent | ae39d7b28caa30652c0e48fda453f509e8e8d784 (diff) |
Merge pull request #1863 from RyanDwyer/remove-workspace-layout
Remove sway_container.workspace_layout
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r-- | sway/ipc-json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c index 6158fc29..ea7fd9ad 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -148,7 +148,7 @@ static void ipc_json_describe_workspace(struct sway_container *workspace, json_object_object_add(object, "type", json_object_new_string("workspace")); json_object_object_add(object, "urgent", json_object_new_boolean(false)); - const char *layout = ipc_json_layout_description(workspace->workspace_layout); + const char *layout = ipc_json_layout_description(workspace->layout); json_object_object_add(object, "layout", json_object_new_string(layout)); } |