[ShellWindowTracker] Create fallback apps again

Creating window-based apps got lost in the code refactoring.
This commit is contained in:
Colin Walters 2009-10-23 12:26:05 -04:00
parent 0c37a5bd6f
commit 10991d363d

View File

@ -319,6 +319,11 @@ get_app_for_window_direct (MetaWindow *window)
app = shell_app_system_get_app (appsys, id);
}
if (app == NULL)
{
app = _shell_app_new_for_window (window);
}
return app;
}