draft history navigation actions

This commit is contained in:
yggverse 2024-09-30 23:23:29 +03:00
parent 356972ae39
commit 28684b8ef9
6 changed files with 63 additions and 14 deletions

View file

@ -142,16 +142,16 @@ impl Browser {
});
action_tab_page_navigation_history_back.connect_activate({
// let main = main.clone();
let main = main.clone();
move |_, _| {
// @TODO
main.tab_page_navigation_history_back();
}
});
action_tab_page_navigation_history_forward.connect_activate({
// let main = main.clone();
let main = main.clone();
move |_, _| {
// @TODO
main.tab_page_navigation_history_forward();
}
});