From 0695c93fad3fd333f6c708379a5a787f25a490c8 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Fri, 4 Aug 2023 15:14:09 -0700 Subject: [PATCH] Increase touch area border size for better visibility --- src/QmlControls/QGCMouseArea.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QmlControls/QGCMouseArea.qml b/src/QmlControls/QGCMouseArea.qml index e1a9f2c..9218c5d 100644 --- a/src/QmlControls/QGCMouseArea.qml +++ b/src/QmlControls/QGCMouseArea.qml @@ -26,7 +26,7 @@ MouseArea { Rectangle { anchors.fill: parent border.color: "red" - border.width: QGroundControl.corePlugin.showTouchAreas ? 1 : 0 + border.width: QGroundControl.corePlugin.showTouchAreas ? 3 : 0 color: "transparent" } }