From 0432e1586ef0f9dd5e473cee07787ed5bb880570 Mon Sep 17 00:00:00 2001 From: Utkarsh Maheshwari Date: Tue, 19 Jun 2018 11:45:10 +0530 Subject: multigrid: Put everything on default_grid if not ext_multigrid --- src/nvim/api/ui.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/nvim/api') diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c index 18befd498f..4f56371633 100644 --- a/src/nvim/api/ui.c +++ b/src/nvim/api/ui.c @@ -257,9 +257,7 @@ void nvim_ui_try_resize_grid(uint64_t channel_id, Integer grid, Integer width, return; } - // TODO(utkarshme): Check if grid exists - - ui_grid_resize((GridHandle)grid, (int)width, (int)height); + ui_grid_resize((GridHandle)grid, (int)width, (int)height, error); } /// Pushes data into UI.UIData, to be consumed later by remote_ui_flush(). -- cgit