summaryrefslogtreecommitdiff
path: root/src/touchmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/touchmanager.cpp')
-rw-r--r--src/touchmanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/touchmanager.cpp b/src/touchmanager.cpp
index c036f2594..b7b926383 100644
--- a/src/touchmanager.cpp
+++ b/src/touchmanager.cpp
@@ -327,8 +327,8 @@ void TouchManager::resize(const int width, const int height)
case LEFT:
if (height != maxHeight)
{
- item->y += (height - item->height) / 2;
- item->rect.y += (height - item->rect.y) / 2;
+ item->y = (height - item->height) / 2;
+ item->rect.y = (height - item->rect.y) / 2;
}
break;
case RIGHT: