diff options
Diffstat (limited to 'src')
| -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 ed82e23be2..8cb8719cfe 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 = ui->width = width; -  data->bridge->bridge.height = ui->height = height; +  data->bridge->bridge.width = width; +  data->bridge->bridge.height = height;  }  static void unibi_goto(UI *ui, int row, int col) | 
