Merge pull request #1824 from H3rnand3zzz/feature/mouse-scroll

Smooth scrolling support (+mouse wheel scrolling in some terminals)
This commit is contained in:
Michael Vetter
2023-12-05 12:25:41 +01:00
committed by GitHub
5 changed files with 60 additions and 21 deletions

View File

@@ -88,8 +88,8 @@ void win_update_entry_message(ProfWin* window, const char* const id, const char*
gboolean win_has_active_subwin(ProfWin* window);
void win_page_up(ProfWin* window);
void win_page_down(ProfWin* window);
void win_page_up(ProfWin* window, int scroll_size);
void win_page_down(ProfWin* window, int scroll_size);
void win_sub_page_down(ProfWin* window);
void win_sub_page_up(ProfWin* window);