summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/Table.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/ui/Table.java')
-rw-r--r--src/com/vaadin/ui/Table.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java
index aae0c95456..fe28c1fed9 100644
--- a/src/com/vaadin/ui/Table.java
+++ b/src/com/vaadin/ui/Table.java
@@ -3409,9 +3409,9 @@ public class Table extends AbstractSelect implements Action.Container,
public Location getDropLocation() {
String s = (String) getData("detail");
- if ("Top".equals(s)) {
+ if ("TOP".equals(s)) {
return Location.TOP;
- } else if ("Bottom".equals(s)) {
+ } else if ("BOTTOM".equals(s)) {
return Location.BOTTOM;
} else {
return Location.MIDDLE;