diff options
author | Mikkel Oscar Lyderik <[email protected]> | 2015-12-15 14:05:42 +0100 |
---|---|---|
committer | Mikkel Oscar Lyderik <[email protected]> | 2015-12-15 15:02:13 +0100 |
commit | 6834a33290e7cf9466a3671cb00d3d7b08f68ca7 (patch) | |
tree | 45aa2beec058d40c2c8c08e14ad5c466e5027be2 /sway/ipc-server.c | |
parent | b76acbaf4f0ad4facdedeeb9a6618f1b68047c46 (diff) |
Add bar height option (Airblader/i3)
Diffstat (limited to 'sway/ipc-server.c')
-rw-r--r-- | sway/ipc-server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c index 727f06da..60b61d74 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -419,7 +419,7 @@ void ipc_client_handle_command(struct ipc_client *client) { } json_object_object_add(json, "status_command", json_object_new_string(bar->status_command)); json_object_object_add(json, "font", json_object_new_string(bar->font)); - json_object_object_add(json, "bar_height", json_object_new_int(bar->bar_height)); + json_object_object_add(json, "bar_height", json_object_new_int(bar->height)); json_object_object_add(json, "workspace_buttons", json_object_new_boolean(bar->workspace_buttons)); json_object_object_add(json, "strip_workspace_numbers", json_object_new_boolean(bar->strip_workspace_numbers)); json_object_object_add(json, "binding_mode_indicator", json_object_new_boolean(bar->binding_mode_indicator)); |