selection: update: don't update if there's no ongoing selection

This commit is contained in:
Daniel Eklöf 2020-08-11 10:14:38 +02:00
parent 9352befd13
commit cddeaa2c1c
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -311,6 +311,9 @@ selection_update(struct terminal *term, int col, int row)
if (term->selection.start.row < 0)
return;
if (!term->selection.ongoing)
return;
LOG_DBG("selection updated: start = %d,%d, end = %d,%d -> %d, %d",
term->selection.start.row, term->selection.start.col,
term->selection.end.row, term->selection.end.col,