mirror of
https://github.com/brl/mutter.git
synced 2024-11-09 15:37:00 -05:00
workspace: Activate a window also if it's already in workspace
meta_workspace_activate_with_focus is supposed to focus the passed window after switching the workspace. However if the passed workspace is already the active one, we just return without activating the window. So fix this calling meta_window_activate on the foucs_this window if that is valid. https://gitlab.gnome.org/GNOME/mutter/merge_requests/562
This commit is contained in:
parent
81ae886dda
commit
ee4bb2240b
@ -529,7 +529,11 @@ meta_workspace_activate_with_focus (MetaWorkspace *workspace,
|
||||
meta_workspace_index (workspace));
|
||||
|
||||
if (workspace->manager->active_workspace == workspace)
|
||||
{
|
||||
if (focus_this)
|
||||
meta_window_activate (focus_this, timestamp);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Free any cached pointers to the workspaces's edges from
|
||||
* a current resize or move operation */
|
||||
|
Loading…
Reference in New Issue
Block a user