mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-09 13:45:26 +02:00
Fix block range coalescing not working in algorithm.c
This commit is contained in:
@@ -672,7 +672,7 @@ enqueue(Differ *self, Operation op) {
|
||||
}
|
||||
break;
|
||||
case OpBlockRange:
|
||||
if (self->pending_op.block_index+1 == op.block_index) {
|
||||
if (self->pending_op.block_index_end+1 == op.block_index) {
|
||||
self->pending_op.block_index_end = op.block_index;
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user