From e015ac7507ee19cbf0b261d0ba52513bff60ddd0 Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Fri, 9 Sep 2016 17:31:56 +0200 Subject: [PATCH] fix(newCall): switch sipAddressText/usernameText ids --- tests/ui/components/misc/Contact.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/ui/components/misc/Contact.qml b/tests/ui/components/misc/Contact.qml index 7d800ef03..1a4dceaed 100644 --- a/tests/ui/components/misc/Contact.qml +++ b/tests/ui/components/misc/Contact.qml @@ -27,23 +27,23 @@ Item { Layout.fillHeight: parent.height Layout.fillWidth: true - // Sip address. + // Username. Text { clip: true color: '#5A585B' font.weight: Font.DemiBold height: parent.height / 2 - id: sipAddressText + id: usernameText verticalAlignment: Text.AlignBottom width: parent.width } - // Username. + // Sip address. Text { clip: true color: '#5A585B' height: parent.height / 2 - id: usernameText + id: sipAddressText verticalAlignment: Text.AlignTop width: parent.width }