diff options
author | Ivan Molodetskikh <yalterz@gmail.com> | 2019-09-25 17:55:47 +0300 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2019-11-17 20:18:42 +0100 |
commit | 7f8a47855c13989d4ec5d477132d7e4310d1345c (patch) | |
tree | fa6de19a08e282dff32b7365bcadcf2502d31a28 /sway/ipc-json.c | |
parent | fe84ec2f24db6d0677d6350719fcd500fcb9b572 (diff) |
Add max_render_time to view JSON
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r-- | sway/ipc-json.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c index be961812..b880eb65 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -418,6 +418,8 @@ static void ipc_json_describe_view(struct sway_container *c, json_object *object struct wlr_box geometry = {0, 0, c->view->natural_width, c->view->natural_height}; json_object_object_add(object, "geometry", ipc_json_create_rect(&geometry)); + json_object_object_add(object, "max_render_time", json_object_new_int(c->view->max_render_time)); + #if HAVE_XWAYLAND if (c->view->type == SWAY_VIEW_XWAYLAND) { json_object_object_add(object, "window", |