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 ecbce38 commit a17a1daCopy full SHA for a17a1da
src/zen/workspaces/ZenWorkspaces.mjs
@@ -1135,7 +1135,9 @@ var gZenWorkspaces = new (class extends ZenMultiWindowFeature {
1135
workspaceActions.addEventListener('popupshowing', this.updateWorkspaceActionsMenu.bind(this));
1136
workspaceActions.addEventListener('popuphidden', () => {
1137
setTimeout(() => {
1138
- this.#contextMenuData = null;
+ setTimeout(() => {
1139
+ this.#contextMenuData = null;
1140
+ }, 0);
1141
}, 0); // Delay to ensure the context menu data is cleared after the popup is hidden
1142
});
1143
0 commit comments