mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-24 01:40:12 -05:00
commands: scrollback: don't scrollback if mouse tracking is enabled
This commit is contained in:
parent
664041d04f
commit
5d2b2dc8a7
1 changed files with 3 additions and 0 deletions
|
|
@ -89,6 +89,9 @@ cmd_scrollback_down(struct terminal *term, int rows)
|
||||||
if (term->grid == &term->alt)
|
if (term->grid == &term->alt)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (term->mouse_tracking != MOUSE_NONE)
|
||||||
|
return;
|
||||||
|
|
||||||
if (term->grid->view == term->grid->offset)
|
if (term->grid->view == term->grid->offset)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue