apply escape action to the current page only

This commit is contained in:
yggverse 2024-12-26 20:55:02 +02:00
parent 04a34c91ca
commit 3fda9c851a
5 changed files with 75 additions and 14 deletions

View file

@ -119,6 +119,10 @@ impl Window {
}
// Actions
pub fn escape(&self, tab_item_id: Option<GString>) {
self.tab.escape(tab_item_id);
}
pub fn update(&self, tab_item_id: Option<GString>) {
self.tab.update(tab_item_id);
}