diff --git a/retroshare-qml-app/src/GxsIdentityDelegate.qml b/retroshare-qml-app/src/GxsIdentityDelegate.qml index 828735289..2b8142cf3 100644 --- a/retroshare-qml-app/src/GxsIdentityDelegate.qml +++ b/retroshare-qml-app/src/GxsIdentityDelegate.qml @@ -65,6 +65,26 @@ Item hoverEnabled: true } + Rectangle + { + id: backgroundRectangle + anchors.fill: parent.fill + anchors.right: parent.right + width: parent.width - colorHash.width - 15 + height: parent.height + color:"transparent" + + Rectangle + { + id: borderBottom + width: parent.width + height: 1 + anchors.bottom: parent.bottom + anchors.right: parent.right + color: "lightgrey" + } + } + Rectangle { anchors.fill: parent @@ -89,27 +109,6 @@ Item } } - Rectangle - { - id: backgroundRectangle - anchors.fill: parent.fill - anchors.right: parent.right - width: parent.width - colorHash.width - 15 - height: parent.height - color:"transparent" - - Rectangle - { - id: borderBottom - width: parent.width - height: 1 - anchors.bottom: parent.bottom - anchors.right: parent.right - color: "lightgrey" - } - } - - Column {