Trim more the urlbar on single toolbar, fixed pinned tabs issues and removed security indicator on the urlbar unless it's hovered

This commit is contained in:
mr. m
2025-02-16 13:17:36 +01:00
parent c322051ddd
commit 4bc5e41c35
4 changed files with 33 additions and 5 deletions

View File

@@ -290,6 +290,9 @@
for (let otherTab of gBrowser.tabs) {
if (otherTab.pinned && otherTab._tPos > tab.position) {
const actualPin = this._pinsCache.find((pin) => pin.uuid === otherTab.getAttribute('zen-pin-id'));
if (!actualPin) {
continue;
}
actualPin.position = otherTab._tPos;
await ZenPinnedTabsStorage.savePin(actualPin, false);
}