From 792f9b4e7dfe842e0eb1ab6b233ce17bf526a9f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Wed, 10 May 2023 10:38:53 +0800 Subject: "list" is ambiguous on Designer --- Friends.ui.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Friends.ui.qml b/Friends.ui.qml index 20a3654..e960211 100644 --- a/Friends.ui.qml +++ b/Friends.ui.qml @@ -5,7 +5,7 @@ import Bootstrap 5.3 Flickable { property string titleText: qsTr("Friends") - property alias list: list + property alias listView: listView contentHeight: container.height + 28 ColumnLayout { @@ -26,7 +26,7 @@ Flickable { } ListView { - id: list + id: listView Layout.fillWidth: true interactive: false implicitHeight: count * 88.5 @@ -50,7 +50,7 @@ Flickable { delegate: Card { Bootstrap.mode: ApplicationWindow.window .Bootstrap.mode - width: list.width + width: listView.width imageSource: image nameText: name statusText: status -- cgit v1.2.3