We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c095bc7 commit 3723517Copy full SHA for 3723517
src/zen/glance/ZenGlanceManager.mjs
@@ -620,6 +620,11 @@
620
this.animatingFullOpen = true;
621
this.#currentTab.setAttribute('zen-dont-split-glance', true);
622
623
+ const isZenFolder = this.#currentParentTab?.group?.isZenFolder;
624
+ if (Services.prefs.getBoolPref('zen.folders.owned-tabs-in-folder') && isZenFolder) {
625
+ gBrowser.pinTab(this.#currentTab);
626
+ }
627
+
628
gBrowser.moveTabAfter(this.#currentTab, this.#currentParentTab);
629
630
const browserRect = window.windowUtils.getBoundsWithoutFlushing(this.browserWrapper);
0 commit comments