diff options
author | Joona Petrell <joona.t.petrell@nokia.com> | 2010-08-05 04:03:57 (GMT) |
---|---|---|
committer | Joona Petrell <joona.t.petrell@nokia.com> | 2010-08-05 04:41:16 (GMT) |
commit | 89e723153b15af5d3acbeb859d4f35bf52f8e250 (patch) | |
tree | 62f50e9e406ecd62a33b80347764f36b62a427bf /src | |
parent | 4692a507dcdfbc830a0885016b6bd0bab4480bad (diff) | |
download | Qt-89e723153b15af5d3acbeb859d4f35bf52f8e250.zip Qt-89e723153b15af5d3acbeb859d4f35bf52f8e250.tar.gz Qt-89e723153b15af5d3acbeb859d4f35bf52f8e250.tar.bz2 |
Increase drag distance on Symbian to improve finger usability on capacitive screens
Task-number: QTBUG-12594
Reviewed-by: Martin Jones
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/kernel/qapplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index 3303800..e164baf 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -474,7 +474,7 @@ int qt_antialiasing_threshold = -1; static int drag_time = 500; #ifdef Q_OS_SYMBIAN // The screens are a bit too small to for your thumb when using only 4 pixels drag distance. -static int drag_distance = 8; +static int drag_distance = 12; #else static int drag_distance = 4; #endif |