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 b821356 commit 3c01004Copy full SHA for 3c01004
src/zen/tabs/ZenPinnedTabManager.mjs
@@ -94,6 +94,9 @@
94
try {
95
setTimeout(async () => {
96
97
+ const pin = this._pinsCache?.find(
98
+ (pin) => pin.uuid === tab.getAttribute('zen-pin-id')
99
+ );
100
let favicon = await PlacesUtils.favicons.getFaviconForPage(
101
Services.io.newURI(pin.url)
102
);
src/zen/workspaces/ZenWorkspaces.mjs
@@ -2323,7 +2323,7 @@ var gZenWorkspaces = new (class extends ZenMultiWindowFeature {
2323
existingTransform = container.style.transform;
2324
}
2325
if (shouldAnimate) {
2326
- container.style.transform = newTransform;
+ container.style.transform = existingTransform;
2327
animations.push(
2328
gZenUIManager.motion.animate(
2329
container,
0 commit comments