mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
fix tab update level
This commit is contained in:
parent
1dc6bdf7e3
commit
03764ce599
7 changed files with 23 additions and 5 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue