summaryrefslogtreecommitdiff
path: root/wm/compiz-fusion-plugins-main
diff options
context:
space:
mode:
authorimil <imil@pkgsrc.org>2009-11-26 20:02:13 +0000
committerimil <imil@pkgsrc.org>2009-11-26 20:02:13 +0000
commitdcc5c1e9a11b9890a550c08759acdc2d0c2a716e (patch)
tree755f77cf8b336566155314c7069ff8288731814c /wm/compiz-fusion-plugins-main
parent1fde2e02ab6a4d6499395f4f1232e5c56dafa9fe (diff)
downloadpkgsrc-dcc5c1e9a11b9890a550c08759acdc2d0c2a716e.tar.gz
no need for patches anymore
Diffstat (limited to 'wm/compiz-fusion-plugins-main')
-rw-r--r--wm/compiz-fusion-plugins-main/patches/patch-aa43
1 files changed, 0 insertions, 43 deletions
diff --git a/wm/compiz-fusion-plugins-main/patches/patch-aa b/wm/compiz-fusion-plugins-main/patches/patch-aa
deleted file mode 100644
index 223b034b614..00000000000
--- a/wm/compiz-fusion-plugins-main/patches/patch-aa
+++ /dev/null
@@ -1,43 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2009/04/17 16:14:56 drochner Exp $
-
---- src/expo/expo.c.orig 2007-10-15 19:43:43.000000000 +0200
-+++ src/expo/expo.c
-@@ -1030,10 +1030,6 @@ expoDonePaintScreen (CompScreen * s)
- continue;
- }
-
-- if (!(w->type & (CompWindowTypeNormalMask |
-- CompWindowTypeFullscreenMask)))
-- continue;
--
- xOffset = s->hsize * s->width;
- yOffset = s->vsize * s->height;
-
-@@ -1052,6 +1048,18 @@ expoDonePaintScreen (CompScreen * s)
- if (!inWindow)
- continue;
-
-+ /* make sure we never move windows we're not allowed to move */
-+ if (!w->managed)
-+ w = NULL;
-+ else if (!(w->actions & CompWindowActionMoveMask))
-+ w = NULL;
-+ else if (w->type & (CompWindowTypeDockMask |
-+ CompWindowTypeDesktopMask))
-+ w = NULL;
-+
-+ if (!w)
-+ break;
-+
- es->dndState = DnDDuring;
- es->dndWindow = w;
-
-@@ -1068,7 +1076,7 @@ expoDonePaintScreen (CompScreen * s)
- }
- else
- {
-- /* no window was hovered */
-+ /* no (movable) window was hovered */
- es->dndState = DnDNone;
- }
-