create tab history actions

This commit is contained in:
yggverse 2024-08-29 02:45:46 +03:00
parent 4a2b6144f0
commit c4e43f737e
3 changed files with 18 additions and 2 deletions

View File

@ -110,6 +110,22 @@ Browser::Browser(
);
}
);
add_action(
"tab_history_back",
[this]
{
// @TODO
}
);
add_action(
"tab_history_forward",
[this]
{
// @TODO
}
);
}
Browser::~Browser()

View File

@ -5,7 +5,7 @@ using namespace app::browser::main::tab::page::navbar::history;
Back::Back()
{
set_action_name(
"tab.back"
"win.tab_history_back"
);
set_icon_name(

View File

@ -5,7 +5,7 @@ using namespace app::browser::main::tab::page::navbar::history;
Forward::Forward()
{
set_action_name(
"tab.forward"
"win.tab_history_forward"
);
set_icon_name(