Refactor tab blurring logic in ZenWorkspaces for improved readability

This commit is contained in:
mr. M
2025-02-21 23:12:46 +01:00
parent ec30e4c100
commit 5e256b9beb

View File

@@ -2025,7 +2025,7 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature {
} }
findTabToBlur(tab) { findTabToBlur(tab) {
return (!this._shouldChangeToTab(tab)) && this._emptyTab ? this._emptyTab : tab; return !this._shouldChangeToTab(tab) && this._emptyTab ? this._emptyTab : tab;
} }
async setDefaultWorkspace() { async setDefaultWorkspace() {