Show
Ignore:
Timestamp:
06/09/08 07:18:12 (6 months ago)
Author:
magi@…
Message:

Merged [4768] from trunk to 5.2 branch: fixes #1778 (GridLayout? does not properly repaint after setSpacing and setComponentAlignment)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/5.2/src/com/itmill/toolkit/ui/GridLayout.java

    r3723 r4793  
    963963        componentToAlignment.put(childComponent, new Integer( 
    964964                horizontalAlignment + verticalAlignment)); 
     965        requestRepaint(); 
    965966    } 
    966967 
     
    972973    public void setSpacing(boolean enabled) { 
    973974        spacing = enabled; 
     975        requestRepaint(); 
    974976    } 
    975977