Skip to content
Snippets Groups Projects
Commit 9e40648b authored by Aline Gondim Santos's avatar Aline Gondim Santos Committed by Aline Gondim Santos
Browse files

fix: set use ListViewJami in contact and plugin pickers

Change-Id: Ia5258e115055c44091a1d20186878d6b35e023f5
parent b420ca3a
No related branches found
No related tags found
No related merge requests found
......@@ -115,12 +115,13 @@ Popup {
}
}
ListView {
ListViewJami {
id: contactPickerListView
Layout.alignment: Qt.AlignCenter
Layout.preferredWidth: contactPickerPopupRect.width
Layout.preferredHeight: 200
border.width: 0
model: ContactAdapter.getContactSelectableModel(type)
......@@ -129,8 +130,6 @@ Popup {
delegate: ContactPickerItemDelegate {
id: contactPickerItemDelegate
}
ScrollIndicator.vertical: ScrollIndicator {}
}
}
......
......@@ -124,12 +124,13 @@ Popup {
}
}
ListView {
ListViewJami {
id: pluginhandlerPickerListView
Layout.alignment: Qt.AlignHCenter
Layout.fillWidth: true
Layout.fillHeight: true
border.width: 0
model: {
if (isCall) {
......@@ -243,7 +244,7 @@ Popup {
}
}
ListView {
ListViewJami {
id: pluginhandlerPreferencePickerListView
Layout.alignment: Qt.AlignHCenter
Layout.fillWidth: true
......@@ -253,6 +254,7 @@ Popup {
property string handlerName: ""
model: PluginAdapter.getHandlerPreferencesModel(pluginId, handlerName)
border.width: 0
clip: true
......@@ -287,8 +289,6 @@ Popup {
pluginhandlerPreferencePickerListView.model = PluginAdapter.getHandlerPreferencesModel(pluginId, pluginhandlerPreferencePickerListView.handlerName)
}
}
ScrollIndicator.vertical: ScrollIndicator {}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment