aboutsummaryrefslogtreecommitdiffstats
path: root/sway/ipc-json.c
diff options
context:
space:
mode:
authorLibravatar Cole Mickens <cole.mickens@gmail.com>2018-11-03 15:07:51 -0700
committerLibravatar Cole Mickens <cole.mickens@gmail.com>2018-11-03 15:09:34 -0700
commitef888321bacd22d061670d7172b21a79362d7d09 (patch)
tree0396af53f1684e36469ea8a651281d3c1228f391 /sway/ipc-json.c
parentfix: restore refresh to the modes_array (diff)
downloadsway-ef888321bacd22d061670d7172b21a79362d7d09.tar.gz
sway-ef888321bacd22d061670d7172b21a79362d7d09.tar.zst
sway-ef888321bacd22d061670d7172b21a79362d7d09.zip
ipc: move refresh from output to output->current_mode
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r--sway/ipc-json.c4
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,
118 json_object_new_string(wlr_output->serial)); 118 json_object_new_string(wlr_output->serial));
119 json_object_object_add(object, "scale", 119 json_object_object_add(object, "scale",
120 json_object_new_double(wlr_output->scale)); 120 json_object_new_double(wlr_output->scale));
121 json_object_object_add(object, "refresh",
122 json_object_new_int(wlr_output->refresh));
123 json_object_object_add(object, "transform", 121 json_object_object_add(object, "transform",
124 json_object_new_string( 122 json_object_new_string(
125 ipc_json_get_output_transform(wlr_output->transform))); 123 ipc_json_get_output_transform(wlr_output->transform)));
@@ -148,6 +146,8 @@ static void ipc_json_describe_output(struct sway_output *output,
148 json_object_new_int(wlr_output->width)); 146 json_object_new_int(wlr_output->width));
149 json_object_object_add(current_mode_object, "height", 147 json_object_object_add(current_mode_object, "height",
150 json_object_new_int(wlr_output->height)); 148 json_object_new_int(wlr_output->height));
149 json_object_object_add(current_mode_object, "refresh",
150 json_object_new_int(wlr_output->refresh));
151 json_object_object_add(object, "current_mode", current_mode_object); 151 json_object_object_add(object, "current_mode", current_mode_object);
152 152
153 struct sway_node *parent = node_get_parent(&output->node); 153 struct sway_node *parent = node_get_parent(&output->node);