Index: sources/gui/qml/components/TouchArea.qml =================================================================== diff -u -r442d1c4f53c96991d4103485ff5ff683ed00d4f7 -rae97f70129df818530bcb70c934c42fa28eb6034 --- sources/gui/qml/components/TouchArea.qml (.../TouchArea.qml) (revision 442d1c4f53c96991d4103485ff5ff683ed00d4f7) +++ sources/gui/qml/components/TouchArea.qml (.../TouchArea.qml) (revision ae97f70129df818530bcb70c934c42fa28eb6034) @@ -14,7 +14,6 @@ // Qt import QtQuick 2.12 -import QtQuick.Controls 2.12 // Project // Qml imports @@ -27,7 +26,7 @@ * if set to be touchable will show an arrow right side of the title * next to the right edge of the component. */ -Item { id : _root +Rectangle { id : _root enum Orientation { Horizontal, Vertical @@ -46,9 +45,10 @@ signal clicked() + color: "transparent" width : _column.width + arrowSpacing height: _column.height - clip: true + clip : false Column { id: _column width : Math.max(_titleText.width , _grid.width)