[mutter/wip/carlosg/avoid-app-updates] core: Avoid consecutive workspace changes in window construction



commit 09bab98b1eb3689e644dc9cb866fe80f0f619faa
Author: Carlos Garnacho <carlosg gnome org>
Date:   Fri Jul 19 17:48:42 2019 +0200

    core: Avoid consecutive workspace changes in window construction
    
    We first set the workspace to the transient-for parent's, and then
    try to set on the current workspace. If both happen, we double the
    work on adding/removing it from the workspace, and everything that
    happens in result.
    
    Should reduce some activity while typing on the Epiphany address
    bar, as the animation results in a number of xdg_popup being created
    and destroyed to handle the animation.
    
    https://gitlab.gnome.org/GNOME/mutter/issues/556

 src/core/window.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
---
diff --git a/src/core/window.c b/src/core/window.c
index 163bbb840..322cdaa42 100644
--- a/src/core/window.c
+++ b/src/core/window.c
@@ -1296,8 +1296,7 @@ _meta_window_shared_new (MetaDisplay         *display,
                                window->transient_for->on_all_workspaces_requested,
                                window->transient_for->workspace);
         }
-
-      if (window->on_all_workspaces)
+      else if (window->on_all_workspaces)
         {
           meta_topic (META_DEBUG_PLACEMENT,
                       "Putting window %s on all workspaces\n",


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