Browse Source

Merge of (#10212) to Vaadin 7.

Menu Items are not displayed when used in table row using Android 4.0.4.

Change-Id: Ied0f98eeae80cd9014b389d790e76908c3457be1
tags/7.0.0.rc1
Anna Koskinen 11 years ago
parent
commit
bafdc19785
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      client/src/com/vaadin/client/ui/VScrollTable.java

+ 2
- 2
client/src/com/vaadin/client/ui/VScrollTable.java View File

@@ -5115,9 +5115,9 @@ public class VScrollTable extends FlowPanel implements HasWidgets,
dragTouchTimeout.cancel();
}
if (touchStart != null) {
event.preventDefault();
event.stopPropagation();
if (!BrowserInfo.get().isAndroid()) {
event.preventDefault();
event.stopPropagation();
Util.simulateClickFromTouchEvent(touchStart,
this);
}

Loading…
Cancel
Save