Skip to content

Commit ea92971

Browse files
committed
...
1 parent 3821405 commit ea92971

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

kitty/screen.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1516,6 +1516,7 @@ screen_update_cell_data(Screen *self, void *address, FONTS_DATA_HANDLE fonts_dat
15161516
}
15171517
}
15181518

1519+
15191520
static inline bool
15201521
is_selection_empty(Screen *self, unsigned int start_x, unsigned int start_y, unsigned int end_x, unsigned int end_y) {
15211522
return (start_x >= self->columns || start_y >= self->lines || end_x >= self->columns || end_y >= self->lines || (start_x == end_x && start_y == end_y)) ? true : false;

0 commit comments

Comments
 (0)