Navigation Menu

Skip to content

Commit

Permalink
[fingerterm] Fix VKB toggle on tap.
Browse files Browse the repository at this point in the history
  • Loading branch information
dcaliste committed Nov 30, 2016
1 parent 76fa166 commit d4cf427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qml/Main.qml
Expand Up @@ -150,7 +150,7 @@ Item {
// - not in select mode, as it would be hard to select text
if (touchPoint.y < vkb.y && touchPoint.startY < vkb.y &&
Math.abs(touchPoint.y - touchPoint.startY) < 20 &&
util.dragMode == Util.DragSelect) {
util.dragMode !== Util.DragSelect) {
if (vkb.active) {
window.sleepVKB();
} else {
Expand Down

0 comments on commit d4cf427

Please sign in to comment.