From d67022303ae9e4d3448012a07572f1bf3c71f46c Mon Sep 17 00:00:00 2001 From: Denis Anisimov Date: Sun, 20 Apr 2014 19:14:44 +0300 Subject: Set "v-formlayout" as the first style for VFormLayout (#13509). Change-Id: I63f0b1c8da52d426b5c370097256b08dbd44b5d7 --- client/src/com/vaadin/client/ui/VFormLayout.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client/src') diff --git a/client/src/com/vaadin/client/ui/VFormLayout.java b/client/src/com/vaadin/client/ui/VFormLayout.java index a6d1f0cabb..7fd07a2093 100644 --- a/client/src/com/vaadin/client/ui/VFormLayout.java +++ b/client/src/com/vaadin/client/ui/VFormLayout.java @@ -53,8 +53,8 @@ public class VFormLayout extends SimplePanel { public VFormLayout() { super(); - setStyleName(StyleConstants.UI_LAYOUT); - addStyleName(CLASSNAME); + setStyleName(CLASSNAME); + addStyleName(StyleConstants.UI_LAYOUT); table = new VFormLayoutTable(); setWidget(table); } -- cgit v1.2.3