mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
implement multi-tab close action
This commit is contained in:
parent
daa5edcead
commit
f72bf5e723
6 changed files with 84 additions and 1 deletions
|
|
@ -45,4 +45,19 @@ void Main::tab_append()
|
|||
void Main::tab_close()
|
||||
{
|
||||
tab->close();
|
||||
};
|
||||
|
||||
void Main::tab_close_left()
|
||||
{
|
||||
tab->close_left();
|
||||
};
|
||||
|
||||
void Main::tab_close_right()
|
||||
{
|
||||
tab->close_right();
|
||||
};
|
||||
|
||||
void Main::tab_close_all()
|
||||
{
|
||||
tab->close_all();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue