add page number argument

This commit is contained in:
yggverse 2024-08-29 03:38:49 +03:00
parent 9be2ba6c32
commit 24ffe358c4
3 changed files with 37 additions and 8 deletions

View file

@ -81,12 +81,16 @@ void Main::tab_close_all()
void Main::tab_history_back()
{
mainTab->history_back();
mainTab->history_back(
mainTab->get_current_page()
);
};
void Main::tab_history_forward()
{
mainTab->history_forward();
mainTab->history_forward(
mainTab->get_current_page()
);
};
void Main::refresh()