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
Branches
No related tags found
No related merge requests found
...@@ -115,12 +115,13 @@ Popup { ...@@ -115,12 +115,13 @@ Popup {
} }
} }
ListView { ListViewJami {
id: contactPickerListView id: contactPickerListView
Layout.alignment: Qt.AlignCenter Layout.alignment: Qt.AlignCenter
Layout.preferredWidth: contactPickerPopupRect.width Layout.preferredWidth: contactPickerPopupRect.width
Layout.preferredHeight: 200 Layout.preferredHeight: 200
border.width: 0
model: ContactAdapter.getContactSelectableModel(type) model: ContactAdapter.getContactSelectableModel(type)
...@@ -129,8 +130,6 @@ Popup { ...@@ -129,8 +130,6 @@ Popup {
delegate: ContactPickerItemDelegate { delegate: ContactPickerItemDelegate {
id: contactPickerItemDelegate id: contactPickerItemDelegate
} }
ScrollIndicator.vertical: ScrollIndicator {}
} }
} }
......
...@@ -124,12 +124,13 @@ Popup { ...@@ -124,12 +124,13 @@ Popup {
} }
} }
ListView { ListViewJami {
id: pluginhandlerPickerListView id: pluginhandlerPickerListView
Layout.alignment: Qt.AlignHCenter Layout.alignment: Qt.AlignHCenter
Layout.fillWidth: true Layout.fillWidth: true
Layout.fillHeight: true Layout.fillHeight: true
border.width: 0
model: { model: {
if (isCall) { if (isCall) {
...@@ -243,7 +244,7 @@ Popup { ...@@ -243,7 +244,7 @@ Popup {
} }
} }
ListView { ListViewJami {
id: pluginhandlerPreferencePickerListView id: pluginhandlerPreferencePickerListView
Layout.alignment: Qt.AlignHCenter Layout.alignment: Qt.AlignHCenter
Layout.fillWidth: true Layout.fillWidth: true
...@@ -253,6 +254,7 @@ Popup { ...@@ -253,6 +254,7 @@ Popup {
property string handlerName: "" property string handlerName: ""
model: PluginAdapter.getHandlerPreferencesModel(pluginId, handlerName) model: PluginAdapter.getHandlerPreferencesModel(pluginId, handlerName)
border.width: 0
clip: true clip: true
...@@ -287,8 +289,6 @@ Popup { ...@@ -287,8 +289,6 @@ Popup {
pluginhandlerPreferencePickerListView.model = PluginAdapter.getHandlerPreferencesModel(pluginId, pluginhandlerPreferencePickerListView.handlerName) 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.
Please register or to comment