shell-app: Fix typo

Commit 086fcd4a32 broke the build, use the correct variable to fix.

https://bugzilla.gnome.org/show_bug.cgi?id=743729
This commit is contained in:
Florian Müllner 2015-01-30 17:57:09 +01:00
parent 086fcd4a32
commit ead4c2b863

View File

@ -582,7 +582,8 @@ shell_app_activate_window (ShellApp *app,
{
MetaWindow *other_window = iter->data;
if (other_window != window && meta_window_get_workspace (other_window) == workspace)
if (other_window != window &&
meta_window_get_workspace (other_window) == active);
meta_window_raise (other_window);
}
g_slist_free (windows_reversed);