svn changeset:23732/svn branch:6.8
private boolean enableDebug = false;
- private final static boolean requiresTouchScrollDelegate = BrowserInfo
- .get().requiresTouchScrollDelegate();
+ private static final boolean hasNativeTouchScrolling = BrowserInfo.get()
+ .isTouchDevice()
+ && !BrowserInfo.get().requiresTouchScrollDelegate();
/**
* Represents a select range of rows
@Override
public void onBrowserEvent(final Event event) {
- if (!requiresTouchScrollDelegate) {
+ if (hasNativeTouchScrolling) {
onTouchBrowserEvent(event);
return;
}