You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When all the workspaces are empty, there is a "gear" icon appearing in workspace 1. After each update, I will have to apply a manual fix to extension.js to get rid of it. Perhaps, you could already fix this in the code. The following is the solution:
I added this additional line: if (app.get_id().match(/window/i)) return false;
After this existing line:
const app = Shell.WindowTracker.get_default().get_window_app(win)
Thank you.
The text was updated successfully, but these errors were encountered:
Doesn't the Add application to ignore setting with the window regex filter out the "gear" icons? I currently cannot reproduce the issue, so please let me know if the filter doesn't work out.
Hello, and thanks for the nice extension.
When all the workspaces are empty, there is a "gear" icon appearing in workspace 1. After each update, I will have to apply a manual fix to extension.js to get rid of it. Perhaps, you could already fix this in the code. The following is the solution:
I added this additional line:
if (app.get_id().match(/window/i)) return false;
After this existing line:
const app = Shell.WindowTracker.get_default().get_window_app(win)
Thank you.
The text was updated successfully, but these errors were encountered: