File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
browser/components/tabbrowser/content Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
diff --git a/browser/components/tabbrowser/content/tabbrowser.js b/browser/components/tabbrowser/content/tabbrowser.js
2
- index d5aa64842a35c6697263c63fd3a0571b64b01344..48d8465f1a4d593ec6d4bff2bd7a83f44116506b 100644
2
+ index d5aa64842a35c6697263c63fd3a0571b64b01344..e8f37acf7761adb7bd97cb06dc1df386ffc8ec0b 100644
3
3
--- a/browser/components/tabbrowser/content/tabbrowser.js
4
4
+++ b/browser/components/tabbrowser/content/tabbrowser.js
5
5
@@ -413,11 +413,41 @@
@@ -9,7 +9,7 @@ index d5aa64842a35c6697263c63fd3a0571b64b01344..48d8465f1a4d593ec6d4bff2bd7a83f4
9
9
+ get _numVisiblePinTabsWithoutCollapsed() {
10
10
+ let i = 0;
11
11
+ for (let item of this.tabContainer.ariaFocusableItems) {
12
- + if (this.isTabGroupLabel(item) && item.closest("zen -group")?.pinned) {
12
+ + if (this.isTabGroupLabel(item) && item.closest("tab -group")?.pinned) {
13
13
+ i += 1;
14
14
+ continue;
15
15
+ }
Original file line number Diff line number Diff line change @@ -889,14 +889,14 @@ var gZenWorkspaces = new (class extends ZenMultiWindowFeature {
889
889
} catch ( e ) {
890
890
console . error ( 'gZenWorkspaces: Error initializing theme picker' , e ) ;
891
891
}
892
- this . onWindowResize ( ) ;
893
892
await gZenSessionStore . promiseInitialized ;
894
893
await this . workspaceBookmarks ( ) ;
895
894
await this . initializeTabsStripSections ( ) ;
896
895
this . _initializeEmptyTab ( ) ;
897
896
await gZenPinnedTabManager . refreshPinnedTabs ( { init : true } ) ;
898
897
await this . changeWorkspace ( activeWorkspace , { onInit : true } ) ;
899
898
this . _fixTabPositions ( ) ;
899
+ this . onWindowResize ( ) ;
900
900
this . _resolveInitialized ( ) ;
901
901
this . _clearAnyZombieTabs ( ) ; // Dont call with await
902
902
You can’t perform that action at this time.
0 commit comments