implement tab close action

This commit is contained in:
yggverse 2024-08-12 19:11:00 +03:00
parent dca780ca89
commit daa5edcead
4 changed files with 22 additions and 0 deletions

View file

@ -40,4 +40,9 @@ void Main::tab_append()
true,
true
);
};
void Main::tab_close()
{
tab->close();
};

View file

@ -23,6 +23,8 @@ namespace app::browser
~Main();
void tab_append();
void tab_close();
};
}