temp fix until the revamp is ready for cvs
authorcodewarrior <codewarrior>
Sat, 15 Oct 2005 00:47:19 +0000 (00:47 +0000)
committercodewarrior <codewarrior@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 15 Oct 2005 00:47:19 +0000 (00:47 +0000)
SVN revision: 17552

src/bin/e_icon_layout.c

index 3ec5ed0..5df6cb6 100644 (file)
@@ -85,6 +85,10 @@ e_icon_layout_thaw(Evas_Object *obj)
          
    sd->frozen--;
    if (sd->frozen <= 0) _e_icon_layout_smart_reconfigure(sd);
+   
+   printf("virtual size is: %d %d\n", sd->vw, sd->vh);
+   
+   
    return sd->frozen;
 }
 
@@ -333,13 +337,15 @@ _e_icon_layout_smart_reconfigure(E_Smart_Data *sd)
    Evas_Coord x, y, w, h;
    Evas_List *l;
    
-   if (!sd->changed) return;
+   //if (!sd->changed) return;
    
    x = sd->x + sd->xs;
    y = sd->y + sd->ys;
    w = sd->vw;
    h = sd->vh;
    
+   printf("reconfigure: w = %d\n", w);
+   
    for (l = sd->items; l; l = l->next)
     {
        E_Icon_Layout_Item *li;