fix tab update level

This commit is contained in:
yggverse 2024-08-14 07:11:24 +03:00
parent 1dc6bdf7e3
commit 03764ce599
7 changed files with 23 additions and 5 deletions

View file

@ -41,6 +41,14 @@ Browser::Browser(
)
);
add_action(
"tab_update",
sigc::mem_fun(
*this,
&Browser::main_tab_update
)
);
// Close
add_action(
"tab_close",
@ -101,6 +109,11 @@ void Browser::main_tab_append()
main->tab_append();
};
void Browser::main_tab_update()
{
main->tab_update();
};
void Browser::main_tab_close()
{
main->tab_close();