discomfitor pushed a commit to branch master.

commit c22393189b15c9d5df54b3e369d380279bbf6fcf
Author: Mike Blumenkrantz <[email protected]>
Date:   Mon Jun 24 08:50:48 2013 +0100

    avoid setting changed on deleted borders when trying to refresh comp pixmap
---
 src/bin/e_comp.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index 9cbe30b..ff6fdc3 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -501,8 +501,11 @@ _e_comp_win_geometry_update(E_Comp_Win *cw)
                   /* something fucked us and the pixmap came back with the 
wrong size
                    * fix it by forcing a resize in e_border
                    */
-                  BD_CHANGED(cw->bd);
-                  cw->bd->changes.size = 1;
+                  if (!e_object_is_del(E_OBJECT(cw->bd)))
+                    {
+                       BD_CHANGED(cw->bd);
+                       cw->bd->changes.size = 1;
+                    }
                }
           }
         else

-- 

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev

Reply via email to