ShellApp: is_on_workspace() should be TRUE for workspaceless apps
If a starting-up app has not requested a particular workspace, then shell_app_is_on_workspace() should return TRUE for any workspace. Otherwise we will never get startup notification for them, since the app menu only shows apps that are starting on the current workspace. https://bugzilla.gnome.org/show_bug.cgi?id=635089
This commit is contained in:
parent
b919dd7271
commit
99a865fb0f
@ -577,7 +577,8 @@ shell_app_is_on_workspace (ShellApp *app,
|
||||
|
||||
if (shell_app_get_state (app) == SHELL_APP_STATE_STARTING)
|
||||
{
|
||||
if (meta_workspace_index (workspace) == app->started_on_workspace)
|
||||
if (app->started_on_workspace == -1 ||
|
||||
meta_workspace_index (workspace) == app->started_on_workspace)
|
||||
return TRUE;
|
||||
else
|
||||
return FALSE;
|
||||
|
Loading…
Reference in New Issue
Block a user