mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
render: resize: change 'resize' log from info to debug
This commit is contained in:
parent
ec2ad7755f
commit
45c1585bfb
1 changed files with 4 additions and 4 deletions
8
render.c
8
render.c
|
|
@ -1299,10 +1299,10 @@ maybe_resize(struct terminal *term, int width, int height, bool force)
|
|||
term->cols = new_cols;
|
||||
term->rows = new_rows;
|
||||
|
||||
LOG_INFO("resize: %dx%d, grid: cols=%d, rows=%d "
|
||||
"(left-margin=%d, right-margin=%d, top-margin=%d, bottom-margin=%d)",
|
||||
term->width, term->height, term->cols, term->rows,
|
||||
term->margins.left, term->margins.right, term->margins.top, term->margins.bottom);
|
||||
LOG_DBG("resize: %dx%d, grid: cols=%d, rows=%d "
|
||||
"(left-margin=%d, right-margin=%d, top-margin=%d, bottom-margin=%d)",
|
||||
term->width, term->height, term->cols, term->rows,
|
||||
term->margins.left, term->margins.right, term->margins.top, term->margins.bottom);
|
||||
|
||||
/* Signal TIOCSWINSZ */
|
||||
if (ioctl(term->ptmx, TIOCSWINSZ,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue