Move active tabs between spaces

This commit is contained in:
2026-05-07 20:34:38 -04:00
parent 73670bbd85
commit b558b1d979
5 changed files with 109 additions and 8 deletions
+4
View File
@@ -106,6 +106,10 @@ impl BrowserTab {
self.flags.pinned = pinned;
}
pub fn move_to_space(&mut self, space_id: SpaceId) {
self.space_id = space_id;
}
#[must_use]
pub fn split_id(&self) -> Option<&SplitId> {
self.split_id.as_ref()