workspace: Don't try to move O-R windows when relocating workspaces

All we'll get for it is spam.
This commit is contained in:
Jasper St. Pierre 2014-08-25 09:00:00 -04:00
parent 8f757c7b80
commit e1acb69cf1

View File

@ -357,7 +357,9 @@ meta_workspace_relocate_windows (MetaWorkspace *workspace,
for (l = copy; l != NULL; l = l->next)
{
MetaWindow *window = l->data;
meta_window_change_workspace (window, new_home);
if (!window->override_redirect)
meta_window_change_workspace (window, new_home);
}
g_list_free (copy);