pass add_history argument into the page update action

This commit is contained in:
yggverse 2024-09-05 18:20:47 +03:00
parent 8047b6ef48
commit 0db64561f0
8 changed files with 31 additions and 18 deletions

View file

@ -97,9 +97,9 @@ bool Navigation::history_try_back()
match.request
);
navigationUpdate->activate();
return true;
return activate_action(
"win.main_tab_page_navigation_update"
);
}
return false;
@ -115,9 +115,9 @@ bool Navigation::history_try_forward()
match.request
);
navigationUpdate->activate();
return true;
return activate_action(
"win.main_tab_page_navigation_update"
);
}
return false;