[gnome-shell] ShellApp: is_on_workspace() should be TRUE for workspaceless apps



commit 99a865fb0fe76822157d2612e31a89650ead01b0
Author: Dan Winship <danw gnome org>
Date:   Fri Dec 17 15:01:19 2010 -0500

    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

 src/shell-app.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/shell-app.c b/src/shell-app.c
index fae61c4..0f733a4 100644
--- a/src/shell-app.c
+++ b/src/shell-app.c
@@ -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;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]