Skip to content

Commit edf8c73

Browse files
committed
Comment out debug prints
1 parent 4f47cf3 commit edf8c73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kitty/mouse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ scroll_event(double UNUSED xoffset, double yoffset, int flags) {
622622
}
623623
bool upwards = s > 0;
624624
int pixels = screen->pending_scroll_pixels;
625-
printf("asdf %d\n", pixels);
625+
//printf("asdf %f\n", pixels);
626626
if (screen->linebuf == screen->main_linebuf) {
627627
screen_history_scroll(screen, abs(s), upwards);
628628
if (screen->scrolled_by != 0) {

kitty/screen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,7 @@ screen_selection_range_for_word(Screen *self, index_type x, index_type *y1, inde
19911991
}
19921992

19931993
void pixel_scroll(Screen *self, int amt) {
1994-
printf("pixel_scroll(%d)\n", amt);
1994+
//printf("pixel_scroll(%d)\n", amt);
19951995
self->scrolled_by_pixels = amt;
19961996
self->pixel_scroll_changed = true;
19971997
}

0 commit comments

Comments
 (0)