Skip to content

Commit 4f47cf3

Browse files
committed
...
1 parent 42ec3b9 commit 4f47cf3

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
@@ -1501,6 +1501,7 @@ screen_update_cell_data(Screen *self, void *address, FONTS_DATA_HANDLE fonts_dat
15011501
}
15021502
}
15031503

1504+
15041505
static inline bool
15051506
is_selection_empty(Screen *self, unsigned int start_x, unsigned int start_y, unsigned int end_x, unsigned int end_y) {
15061507
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)