clean
authorsebastid <sebastid>
Mon, 10 Oct 2005 22:42:42 +0000 (22:42 +0000)
committersebastid <sebastid@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 10 Oct 2005 22:42:42 +0000 (22:42 +0000)
SVN revision: 17416

src/bin/e_fileman_smart.c

index eeef824..aff836c 100644 (file)
@@ -1009,16 +1009,18 @@ _e_fm_selections_add_rect(E_Fileman_Smart_Data *sd, Evas_Coord x, Evas_Coord y,
        if (!file) continue;
 
        evas_object_geometry_get(file->icon, &xx, &yy, &ww, &hh);
-       if(E_INTERSECTS(x, y, w, h, xx, yy, ww, hh))
-        {
-           if(!file->state.selected)
-            {
-               _e_fm_selections_add(file);
-            }
-        } else {
-           if(file->state.selected) // todo: add control+rubberband
-             _e_fm_selections_del(file);
-        }
+       if (E_INTERSECTS(x, y, w, h, xx, yy, ww, hh))
+         {
+            if (!file->state.selected)
+              {
+                 _e_fm_selections_add(file);
+              }
+         }
+       else
+         {
+            if (file->state.selected) // todo: add control+rubberband
+              _e_fm_selections_del(file);
+         }
      }
 }