diff options
author | Artur Signell <artur@vaadin.com> | 2013-03-24 15:11:50 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-03-25 16:13:36 +0200 |
commit | 59e36b0cedbd204d024fbc75d953649bf0033422 (patch) | |
tree | c19b05c536363f07661789cf354839d4ac172be1 /client | |
parent | 735405243226107b4a8463a962c8f76976a7468b (diff) | |
download | vaadin-framework-59e36b0cedbd204d024fbc75d953649bf0033422.tar.gz vaadin-framework-59e36b0cedbd204d024fbc75d953649bf0033422.zip |
Removed code which calculates size incorrectly (#11395)
Change-Id: I2fbe7031ee1d778f8ebe96a8e773113d8529fba9
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/VPopupCalendar.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/client/src/com/vaadin/client/ui/VPopupCalendar.java b/client/src/com/vaadin/client/ui/VPopupCalendar.java index dfa5625341..a437f3c64a 100644 --- a/client/src/com/vaadin/client/ui/VPopupCalendar.java +++ b/client/src/com/vaadin/client/ui/VPopupCalendar.java @@ -355,10 +355,6 @@ public class VPopupCalendar extends VTextualDate implements Field, } } - // fix size - popup.setWidth(w + "px"); - popup.setHeight(h + "px"); - popup.setPopupPosition(l, t + calendarToggle.getOffsetHeight() + 2); |