mirror of
https://github.com/brl/mutter.git
synced 2024-11-28 19:10:43 -05:00
compositor: don't show stage right away
We don't want the stage shown until gnome-shell is ready for it. This commit ensures the stage isn't shown implicitly. https://bugzilla.gnome.org/show_bug.cgi?id=694321
This commit is contained in:
parent
6e02fb80c4
commit
160150d127
@ -611,7 +611,6 @@ meta_compositor_manage_screen (MetaCompositor *compositor,
|
|||||||
}
|
}
|
||||||
|
|
||||||
clutter_actor_show (info->overlay_group);
|
clutter_actor_show (info->overlay_group);
|
||||||
clutter_actor_show (info->stage);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
#include <meta/meta-plugin.h>
|
#include <meta/meta-plugin.h>
|
||||||
#include <meta/window.h>
|
#include <meta/window.h>
|
||||||
|
#include <meta/util.h>
|
||||||
|
|
||||||
#include <libintl.h>
|
#include <libintl.h>
|
||||||
#define _(x) dgettext (GETTEXT_PACKAGE, x)
|
#define _(x) dgettext (GETTEXT_PACKAGE, x)
|
||||||
@ -68,6 +69,7 @@ struct _MetaDefaultPluginClass
|
|||||||
|
|
||||||
static GQuark actor_data_quark = 0;
|
static GQuark actor_data_quark = 0;
|
||||||
|
|
||||||
|
static void start (MetaPlugin *plugin);
|
||||||
static void minimize (MetaPlugin *plugin,
|
static void minimize (MetaPlugin *plugin,
|
||||||
MetaWindowActor *actor);
|
MetaWindowActor *actor);
|
||||||
static void map (MetaPlugin *plugin,
|
static void map (MetaPlugin *plugin,
|
||||||
@ -191,6 +193,7 @@ meta_default_plugin_class_init (MetaDefaultPluginClass *klass)
|
|||||||
gobject_class->set_property = meta_default_plugin_set_property;
|
gobject_class->set_property = meta_default_plugin_set_property;
|
||||||
gobject_class->get_property = meta_default_plugin_get_property;
|
gobject_class->get_property = meta_default_plugin_get_property;
|
||||||
|
|
||||||
|
plugin_class->start = start;
|
||||||
plugin_class->map = map;
|
plugin_class->map = map;
|
||||||
plugin_class->minimize = minimize;
|
plugin_class->minimize = minimize;
|
||||||
plugin_class->maximize = maximize;
|
plugin_class->maximize = maximize;
|
||||||
@ -282,6 +285,29 @@ on_switch_workspace_effect_complete (ClutterTimeline *timeline, gpointer data)
|
|||||||
meta_plugin_switch_workspace_completed (plugin);
|
meta_plugin_switch_workspace_completed (plugin);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
show_stage (MetaPlugin *plugin)
|
||||||
|
{
|
||||||
|
MetaScreen *screen;
|
||||||
|
ClutterActor *stage;
|
||||||
|
|
||||||
|
screen = meta_plugin_get_screen (plugin);
|
||||||
|
stage = meta_get_stage_for_screen (screen);
|
||||||
|
|
||||||
|
clutter_actor_show (stage);
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
start (MetaPlugin *plugin)
|
||||||
|
{
|
||||||
|
meta_later_add (META_LATER_BEFORE_REDRAW,
|
||||||
|
(GSourceFunc) show_stage,
|
||||||
|
plugin,
|
||||||
|
NULL);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
switch_workspace (MetaPlugin *plugin,
|
switch_workspace (MetaPlugin *plugin,
|
||||||
gint from, gint to,
|
gint from, gint to,
|
||||||
|
Loading…
Reference in New Issue
Block a user