Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,10 @@ class Workspace {
&& this.state.monitorWatchList.indexOf(metaWindow.get_monitor()) > -1;
}

windowWorkspaceChanged(display, metaWorkspace, metaWindow) {
this.windowAdded(metaWindow, metaWorkspace);
windowWorkspaceChanged(display, metaWindow, metaWorkspace) {
// If the window is removed the metaWorkspace will be null, in that
// case we wouldn't want to add the window again.
if (metaWorkspace) this.windowAdded(metaWorkspace, metaWindow);
}

windowAdded(metaWorkspace, metaWindow, app, isFavoriteApp) {
Expand Down
Loading