mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
Merge pull request #1730 from profanity-im/fix/scrolling
Don't scroll if not needed
This commit is contained in:
commit
5aa515ddfe
@ -598,6 +598,10 @@ win_page_up(ProfWin* window)
|
|||||||
int page_space = rows - 4;
|
int page_space = rows - 4;
|
||||||
int* page_start = &(window->layout->y_pos);
|
int* page_start = &(window->layout->y_pos);
|
||||||
|
|
||||||
|
// dont need to scroll
|
||||||
|
if (*page_start == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
*page_start -= page_space;
|
*page_start -= page_space;
|
||||||
|
|
||||||
// went past beginning, show first page
|
// went past beginning, show first page
|
||||||
|
Loading…
Reference in New Issue
Block a user