]> source.dussan.org Git - vaadin-framework.git/commitdiff
Restrict old IE fix to IE <= 10 (#17002)
authorArtur Signell <artur@vaadin.com>
Sat, 11 Jul 2015 18:12:39 +0000 (21:12 +0300)
committerPatrik Lindström <patrik@vaadin.com>
Tue, 4 Aug 2015 12:46:58 +0000 (12:46 +0000)
Change-Id: Iab4ecf3ef0616471743874531264f2fe6868f133

client/src/com/vaadin/client/ui/VFilterSelect.java

index 22eef5790174d061680f3cbaab8155080fa75e6e..d756c88f79b261e37ca1410cca270f751e25d6a0 100644 (file)
@@ -612,7 +612,8 @@ public class VFilterSelect extends Composite implements Field, KeyDownHandler,
                 menuFirstChild.getStyle().setWidth(100, Unit.PCT);
             }
 
-            if (BrowserInfo.get().isIE()) {
+            if (BrowserInfo.get().isIE()
+                    && BrowserInfo.get().getBrowserMajorVersion() < 11) {
                 // Must take margin,border,padding manually into account for
                 // menu element as we measure the element child and set width to
                 // the element parent