pip: Fix ShadowEffect namespace

This commit is contained in:
donadigo 2017-07-17 22:08:17 +02:00 committed by Rico Tzschichholz
parent 52678172d3
commit b7bfe3e5de
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ public class Gala.Plugins.PIP.PopupWindow : Clutter.Actor
container.reactive = true;
container.set_scale (0.35f, 0.35f);
container.clip_rect = container_clip;
container.add_effect (new Gala.ShadowEffect (SHADOW_SIZE, 2));
container.add_effect (new ShadowEffect (SHADOW_SIZE, 2));
container.add_child (clone);
container.add_action (move_action);

View File

@ -17,7 +17,7 @@
using Clutter;
namespace Gala
namespace Gala.Plugins.PIP
{
public class ShadowEffect : Effect
{