diff options
author | Cole Mickens <cole.mickens@gmail.com> | 2018-11-03 15:07:51 -0700 |
---|---|---|
committer | Cole Mickens <cole.mickens@gmail.com> | 2018-11-03 15:09:34 -0700 |
commit | ef888321bacd22d061670d7172b21a79362d7d09 (patch) | |
tree | 0396af53f1684e36469ea8a651281d3c1228f391 /sway | |
parent | 71686ed0e7319e8a188f5a584dc06b57c97e3f8f (diff) |
ipc: move refresh from output to output->current_mode
Diffstat (limited to 'sway')
-rw-r--r-- | sway/ipc-json.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c index 7d4f75ed..4583558c 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -118,8 +118,6 @@ static void ipc_json_describe_output(struct sway_output *output, json_object_new_string(wlr_output->serial)); json_object_object_add(object, "scale", json_object_new_double(wlr_output->scale)); - json_object_object_add(object, "refresh", - json_object_new_int(wlr_output->refresh)); json_object_object_add(object, "transform", json_object_new_string( ipc_json_get_output_transform(wlr_output->transform))); @@ -148,6 +146,8 @@ static void ipc_json_describe_output(struct sway_output *output, json_object_new_int(wlr_output->width)); json_object_object_add(current_mode_object, "height", json_object_new_int(wlr_output->height)); + json_object_object_add(current_mode_object, "refresh", + json_object_new_int(wlr_output->refresh)); json_object_object_add(object, "current_mode", current_mode_object); struct sway_node *parent = node_get_parent(&output->node); |