diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-05-10 10:38:53 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-05-10 10:38:53 +0800 |
commit | 792f9b4e7dfe842e0eb1ab6b233ce17bf526a9f6 (patch) | |
tree | 35de26d33f895548c52a29088bccf3df51013d59 /Friends.ui.qml | |
parent | 07b932571c3b0fdee15266c3aea8bb1ca27e14a4 (diff) |
"list" is ambiguous on Designer
Diffstat (limited to 'Friends.ui.qml')
-rw-r--r-- | Friends.ui.qml | 6 |
1 files 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 |