We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2bfe39 commit 4263225Copy full SHA for 4263225
src/frontend.c
@@ -377,7 +377,7 @@ void draw_collab_cursors(collab_list_t *collab_list) {
377
for (int i = 0; i < collab_list->len; i++) {
378
c = collab_list->list[i];
379
// only draw cursors that exist and are visible on the screen
380
- if (c != NULL && (c->x >= min_x && c->y <= max_x) &&
+ if (c != NULL && (c->x >= min_x && c->x <= max_x) &&
381
(c->y >= min_y && c->y <= max_y)) {
382
logd("Drawing collab %i\n", c->uid);
383
0 commit comments