diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-02-18 13:57:16 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-02-18 13:57:16 +0100 |
| commit | 9263e16306a45c2c16c297c85ba3780bbbfb94f0 (patch) | |
| tree | 1090c6d162283f982253f257541d593694f2c379 | |
| parent | ea54f4ef19543f0fe1a500567e865c4d65712bb9 (diff) | |
Add 'visible' key to view json response
| -rw-r--r-- | sway/ipc-json.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c index 23016dbd..6d36c727 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -344,6 +344,9 @@ static void ipc_json_describe_view(struct sway_container *c, json_object *object json_object_object_add(object, "app_id", app_id ? json_object_new_string(app_id) : NULL); + bool visible = view_is_visible(c->view); + json_object_object_add(object, "visible", json_object_new_boolean(visible)); + json_object *marks = json_object_new_array(); list_t *con_marks = c->marks; for (int i = 0; i < con_marks->length; ++i) { |
