diff options
| author | Jason Smith <jason.smith@canonical.com> | 2010-01-21 11:36:50 -0500 |
|---|---|---|
| committer | Jason Smith <jason.smith@canonical.com> | 2010-01-21 11:36:50 -0500 |
| commit | 237220f1db0f105f9ec71eb61c1e0bd2c3820e24 (patch) | |
| tree | a671ad971c973fa3255cd6f2f76ce20631ad1ee9 /mutter-plugin | |
| parent | 054b592321999a3148e9ebf241336829736ae195 (diff) | |
Make work with patched mutter for DND window sexiness
(bzr r69.2.1)
Diffstat (limited to 'mutter-plugin')
| -rw-r--r-- | mutter-plugin/plugin.vala | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mutter-plugin/plugin.vala b/mutter-plugin/plugin.vala index e73aab1c9..f102ab8b0 100644 --- a/mutter-plugin/plugin.vala +++ b/mutter-plugin/plugin.vala @@ -143,9 +143,12 @@ namespace Unity this.quicklauncher = new Quicklauncher.View (this); this.quicklauncher.opacity = 0; - this.stage.add_actor (this.quicklauncher); - this.stage.raise_child (this.quicklauncher, - this.plugin.get_window_group()); + ((Clutter.Container) this.plugin.get_window_group ()).add_actor (this.quicklauncher); + ((Clutter.Container) this.plugin.get_window_group ()).raise_child (this.quicklauncher, + this.plugin.get_normal_window_group ()); + //this.stage.add_actor (this.quicklauncher); + //this.stage.raise_child (this.quicklauncher, + // this.plugin.get_window_group()); this.quicklauncher.animate (Clutter.AnimationMode.EASE_IN_SINE, 400, "opacity", 255); |
