rename methods

This commit is contained in:
yggverse 2024-09-05 02:31:23 +03:00
parent 207d5079a7
commit f834d783ef
9 changed files with 37 additions and 52 deletions

View file

@ -83,6 +83,23 @@ Browser::Browser(
}
);
// History
add_action(
"main_tab_page_navigation_history_back",
[this]
{
browserMain->tab_page_navigation_history_back();
}
);
add_action(
"main_tab_page_navigation_history_forward",
[this]
{
browserMain->tab_page_navigation_history_forward();
}
);
// Tool
add_action(
"debug",
@ -111,20 +128,4 @@ Browser::Browser(
);
}
);
add_action(
"tab_history_back", // @TODO rename
[this]
{
browserMain->tab_history_back();
}
);
add_action(
"tab_history_forward", // @TODO rename
[this]
{
browserMain->tab_history_forward();
}
);
}