Add pinned tab controls

This commit is contained in:
2026-05-07 19:47:27 -04:00
parent 0f372c5fc0
commit 82df2b4502
8 changed files with 163 additions and 2 deletions
+4
View File
@@ -94,6 +94,10 @@ impl BrowserTab {
self.flags.favorite = favorite;
}
pub fn set_pinned(&mut self, pinned: bool) {
self.flags.pinned = pinned;
}
#[must_use]
pub fn split_id(&self) -> Option<&SplitId> {
self.split_id.as_ref()