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()