From 71686ed0e7319e8a188f5a584dc06b57c97e3f8f Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Sat, 3 Nov 2018 15:09:21 -0700 Subject: fix: restore refresh to the modes_array --- sway/ipc-json.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sway') diff --git a/sway/ipc-json.c b/sway/ipc-json.c index 7cc965c8..7d4f75ed 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -136,6 +136,8 @@ static void ipc_json_describe_output(struct sway_output *output, json_object_new_int(mode->width)); json_object_object_add(mode_object, "height", json_object_new_int(mode->height)); + json_object_object_add(mode_object, "refresh", + json_object_new_int(mode->refresh)); json_object_array_add(modes_array, mode_object); } -- cgit v1.2.3-54-g00ecf