rimmed pushed a commit to branch eflete-1.18.

http://git.enlightenment.org/tools/eflete.git/commit/?id=ecd7df8da245ead4a0e9eb6ae99c50b56ec7d38f

commit ecd7df8da245ead4a0e9eb6ae99c50b56ec7d38f
Author: Vyacheslav Reutskiy <v.reuts...@samsung.com>
Date:   Wed Feb 22 16:29:09 2017 +0200

    tabs: make check workspace on attribute changes not aggressive
    
    @fix
---
 src/bin/ui/tabs.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/bin/ui/tabs.c b/src/bin/ui/tabs.c
index c224343..1e15509 100644
--- a/src/bin/ui/tabs.c
+++ b/src/bin/ui/tabs.c
@@ -212,7 +212,9 @@ _property_attribute_changed(void *data __UNUSED__,
 {
    Attribute *attr = event_info;
 
-   assert(tabs.current_workspace != NULL);
+   /* for example when image is deleted from image manager */
+   if (!tabs.current_workspace)
+     return;
 
    switch ((int)*attr)
      {

-- 


Reply via email to