diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-02-04 03:25:36 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-02-04 03:25:36 +0100 |
commit | 4b7d3aec04d28b9d1f99c4ffbdb84d38f20a6f8d (patch) | |
tree | cc9e3a26364973717fa7cb352b68652d731139d0 | |
parent | 5ef619eb3344540fafbe19cee3fa826102cdaef5 (diff) | |
download | rneovim-4b7d3aec04d28b9d1f99c4ffbdb84d38f20a6f8d.tar.gz rneovim-4b7d3aec04d28b9d1f99c4ffbdb84d38f20a6f8d.tar.bz2 rneovim-4b7d3aec04d28b9d1f99c4ffbdb84d38f20a6f8d.zip |
Revert "tui: update_size(): Fix race condition."
This reverts commit 0e75438a388f91c6219d2f22ade0472b067f5dca.
-rw-r--r-- | src/nvim/tui/tui.c | 4 |
1 files 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) |