1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Fixed compile after merging master

This commit is contained in:
James Booth 2012-11-25 02:29:01 +00:00
parent a28e0ee650
commit a27ed4cf44

View File

@ -1828,7 +1828,7 @@ _win_handle_page(const int * const ch)
else if (*page_start >= y)
*page_start = y - page_space;
_wins[_curr_prof_win].paged = 1;
current->paged = 1;
dirty = TRUE;
} else if (mouse_event.bstate & BUTTON4_PRESSED) { // mouse wheel up
*page_start -= 4;
@ -1837,7 +1837,7 @@ _win_handle_page(const int * const ch)
if (*page_start < 0)
*page_start = 0;
_wins[_curr_prof_win].paged = 1;
current->paged = 1;
dirty = TRUE;
}
}