Index: sources/gui/qml/components/SettingsItem.qml =================================================================== diff -u -r56e378f7504701b9e9a9dccaf205aef2fd52c58e -r0470ff6f209ff0c5089f8f0849b6da04f60f8f41 --- sources/gui/qml/components/SettingsItem.qml (.../SettingsItem.qml) (revision 56e378f7504701b9e9a9dccaf205aef2fd52c58e) +++ sources/gui/qml/components/SettingsItem.qml (.../SettingsItem.qml) (revision 0470ff6f209ff0c5089f8f0849b6da04f60f8f41) @@ -46,18 +46,33 @@ } - Image { id: _arrowImage - visible: true + // chevron + Line { + color: "#4290ec" + height: 18 + width: 3 anchors.right: parent.right - anchors.verticalCenter: parent.verticalCenter - width : Variables.largeArrowWidth - height: Variables.largeArrowHeight - source: "qrc:/images/iArrow" + anchors.bottom: parent.verticalCenter + anchors.rightMargin: 20 + anchors.bottomMargin: -3 + rotation: 135 } Line { + color: "#4290ec" + height: 18 + width: 3 + anchors.right: parent.right + anchors.rightMargin: 20 + anchors.top: parent.verticalCenter + anchors.topMargin: -3 + rotation: 45 + } + + + Line { width: parent.width - color: "gray" + color: "#475f75" anchors.left: parent.left; anchors.bottom: parent.bottom; }