Changeset 4947
- Timestamp:
- 06/24/08 12:34:45 (5 months ago)
- Files:
-
- 1 modified
-
trunk/src/com/itmill/toolkit/ui/Panel.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/itmill/toolkit/ui/Panel.java
r4942 r4947 296 296 final Integer newScrollY = (Integer) variables.get("scrolltop"); 297 297 if (newScrollX != null && newScrollX.intValue() != getScrollLeft()) { 298 setScrollLeft(newScrollX.intValue()); 298 // set internally, not to fire request repaint 299 scrollOffsetX = newScrollX.intValue(); 299 300 } 300 301 if (newScrollY != null && newScrollY.intValue() != getScrollTop()) { 301 setScrollTop(newScrollY.intValue()); 302 // set internally, not to fire request repaint 303 scrollOffsetY = newScrollY.intValue(); 302 304 } 303 305
