From 3687f6064f00ac95fb79840ad65e97a219a9844b Mon Sep 17 00:00:00 2001 From: Kim Woelders Date: Wed, 7 Nov 2007 21:40:30 +0000 Subject: [PATCH] Fix translucent moves (noted by Thanatermesis, broken since 0.16.8.9). SVN revision: 32470 --- src/piximg.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/piximg.c b/src/piximg.c index 61557ddf..327dd752 100644 --- a/src/piximg.c +++ b/src/piximg.c @@ -135,6 +135,9 @@ EBlendRemoveShape(Win win, Pixmap pmap, int x, int y) return; } + if (win->num_rect <= 0) + return; + w = WinGetW(win); h = WinGetH(win);