Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_fm.c 


Log Message:


solve obj resize down on blank dir in fsel
also solve double dir select in fsel

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_fm.c,v
retrieving revision 1.156
retrieving revision 1.157
diff -u -3 -r1.156 -r1.157
--- e_fm.c      4 May 2007 08:42:25 -0000       1.156
+++ e_fm.c      5 May 2007 01:57:26 -0000       1.157
@@ -1794,7 +1794,13 @@
 
    sd = evas_object_smart_data_get(obj);
    if (!sd) return;
-   if (!sd->queue) return;
+   if (!sd->queue)
+     {
+       if (sd->resize_job) ecore_job_del(sd->resize_job);
+       sd->resize_job = ecore_job_add(_e_fm2_cb_resize_job, obj);
+       evas_object_smart_callback_call(sd->obj, "changed", NULL);
+       return;
+     }
 //   double tt = ecore_time_get();
 //   int queued = evas_list_count(sd->queue);
    /* take unsorted and insert into the icon list - reprocess regions */
@@ -3691,7 +3697,8 @@
        (ic->sd->config->view.single_click)
        )
      {
-       evas_object_smart_callback_call(ic->sd->obj, "selected", NULL);
+       if (!up)
+         evas_object_smart_callback_call(ic->sd->obj, "selected", NULL);
      }
 }
 



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to