multigrid: rename to grid.row_offset and grid.requested_rows

This commit is contained in:
Björn Linse
2018-12-23 15:06:28 +01:00
parent 1cec5542a8
commit dc44309336
3 changed files with 41 additions and 40 deletions

View File

@@ -41,17 +41,17 @@ typedef struct {
unsigned *LineOffset;
char_u *LineWraps;
// the size of the allocated grid
// the size of the allocated grid.
int Rows;
int Columns;
// offsets for the grid relative to the global screen
int OffsetRow;
int OffsetColumn;
int row_offset;
int col_offset;
// the size expected to be allocated to the internal grid
int internal_rows;
int internal_columns;
// grid size requested by the UI. Used for window grids only.
int requested_rows;
int requested_cols;
int was_resized;
} ScreenGrid;