Skip to content

Commit

Permalink
Fix typo (mouseY -> pressMouseY)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Perl committed Sep 20, 2013
1 parent cc1e6b8 commit a22012a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qml/Main.qml
Expand Up @@ -173,7 +173,7 @@ PageStackWindow {

// Wake up the keyboard if the user has tapped/clicked on it and we're not in select mode
//(or it would be hard to select text)
if (mouse.y < vkb.y && mouseY < vkb.y && isClick && util.settingsValue("ui/dragMode") !== "select") {
if (mouse.y < vkb.y && pressMouseY < vkb.y && isClick && util.settingsValue("ui/dragMode") !== "select") {
if (vkb.active)
window.sleepVKB();
else
Expand Down

0 comments on commit a22012a

Please sign in to comment.