(int x, int y, Component cmp)
| 3302 | } |
| 3303 | |
| 3304 | private void tactileTouchVibe(int x, int y, Component cmp) { |
| 3305 | if (tactileTouchDuration > 0 && cmp.isTactileTouch(x, y)) { |
| 3306 | Display.getInstance().vibrate(tactileTouchDuration); |
| 3307 | } |
| 3308 | } |
| 3309 | |
| 3310 | //https://github.com/codenameone/CodenameOne/issues/2352 |
| 3311 | private void cancelScrolling(Component cmp) { |
no test coverage detected