diff options
author | Utkarsh Maheshwari <utkarshme96@gmail.com> | 2018-08-18 15:39:22 +0530 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-12-31 12:44:22 +0100 |
commit | 4f1dcf7c28c941cfe3c8516728b6543ad2854645 (patch) | |
tree | 46fdb581391393e1a019130715f5db693613d775 /src/nvim/types.h | |
parent | 0bab611a96bff90fb9fab99ca3fdd6bad77fe1be (diff) | |
download | rneovim-4f1dcf7c28c941cfe3c8516728b6543ad2854645.tar.gz rneovim-4f1dcf7c28c941cfe3c8516728b6543ad2854645.tar.bz2 rneovim-4f1dcf7c28c941cfe3c8516728b6543ad2854645.zip |
multigrid: Clean whole grid when it was just resized
Diffstat (limited to 'src/nvim/types.h')
-rw-r--r-- | src/nvim/types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/types.h b/src/nvim/types.h index aa4332fad1..6d39caab50 100644 --- a/src/nvim/types.h +++ b/src/nvim/types.h @@ -43,6 +43,8 @@ typedef struct { // the size expected to be allocated to the internal grid int internal_rows; int internal_columns; + + int was_resized; } ScreenGrid; #endif // NVIM_TYPES_H |