From 4b7d3aec04d28b9d1f99c4ffbdb84d38f20a6f8d Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sat, 4 Feb 2017 03:25:36 +0100 Subject: Revert "tui: update_size(): Fix race condition." This reverts commit 0e75438a388f91c6219d2f22ade0472b067f5dca. --- src/nvim/tui/tui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index 8cb8719cfe..ed82e23be2 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -763,8 +763,8 @@ end: height = DFLT_ROWS; } - data->bridge->bridge.width = width; - data->bridge->bridge.height = height; + data->bridge->bridge.width = ui->width = width; + data->bridge->bridge.height = ui->height = height; } static void unibi_goto(UI *ui, int row, int col) -- cgit