draft close all tabs actions

This commit is contained in:
yggverse 2024-09-23 16:03:39 +03:00
parent 91ad71033a
commit 6801cc6a05
4 changed files with 34 additions and 1 deletions

View file

@ -29,6 +29,14 @@ impl Main {
self.tab.append(true);
}
pub fn tab_close(&self) {
self.tab.close();
}
pub fn tab_close_all(&self) {
self.tab.close();
}
pub fn tab_pin(&self) {
self.tab.pin();
}