mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Fixed compile after merging master
This commit is contained in:
parent
a28e0ee650
commit
a27ed4cf44
@ -1828,7 +1828,7 @@ _win_handle_page(const int * const ch)
|
|||||||
else if (*page_start >= y)
|
else if (*page_start >= y)
|
||||||
*page_start = y - page_space;
|
*page_start = y - page_space;
|
||||||
|
|
||||||
_wins[_curr_prof_win].paged = 1;
|
current->paged = 1;
|
||||||
dirty = TRUE;
|
dirty = TRUE;
|
||||||
} else if (mouse_event.bstate & BUTTON4_PRESSED) { // mouse wheel up
|
} else if (mouse_event.bstate & BUTTON4_PRESSED) { // mouse wheel up
|
||||||
*page_start -= 4;
|
*page_start -= 4;
|
||||||
@ -1837,7 +1837,7 @@ _win_handle_page(const int * const ch)
|
|||||||
if (*page_start < 0)
|
if (*page_start < 0)
|
||||||
*page_start = 0;
|
*page_start = 0;
|
||||||
|
|
||||||
_wins[_curr_prof_win].paged = 1;
|
current->paged = 1;
|
||||||
dirty = TRUE;
|
dirty = TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user