draft back/forward actions

This commit is contained in:
yggverse 2024-09-01 15:21:12 +03:00
parent b3c00d29be
commit 75aaa6e717
11 changed files with 69 additions and 31 deletions

View file

@ -81,14 +81,14 @@ void Main::tab_close_all()
void Main::tab_history_back()
{
mainTab->history_back(
mainTab->back(
mainTab->get_current_page()
);
};
void Main::tab_history_forward()
{
mainTab->history_forward(
mainTab->forward(
mainTab->get_current_page()
);
};