mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-27 18:51:41 +02:00
Fix error when testing update_selection because not boss is defined
This commit is contained in:
@@ -1772,7 +1772,7 @@ screen_update_selection(Screen *self, index_type x, index_type y, bool ended) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (found) self->selection.end_x = end;
|
if (found) self->selection.end_x = end;
|
||||||
call_boss(set_primary_selection, NULL);
|
if (global_state.boss) call_boss(set_primary_selection, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static PyObject*
|
static PyObject*
|
||||||
|
|||||||
Reference in New Issue
Block a user