Skip to content
Snippets Groups Projects
Verified Commit b9ffcffe authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix completer size on plasma6

parent a9ec130c
No related branches found
No related tags found
No related merge requests found
Pipeline #5656 failed
......@@ -112,7 +112,7 @@ Control {
ListView.delayRemove: true
color: model.index == popup.currentIndex ? palette.highlight : palette.base
height: (chooser.child?.implicitHeight ?? 0) + 2 * popup.rowMargin
implicitWidth: fullWidth ? ListView.view.width : chooser.child.implicitWidth + 4
implicitWidth: popup.fullWidth ? ListView.view.width : chooser.child.implicitWidth + 4
MouseArea {
id: mouseArea
......
......@@ -38,7 +38,7 @@ Popup {
roomTextInput.forceActiveFocus();
}
Column {
contentItem: Column {
id: forwardColumn
spacing: 5
......
......@@ -340,10 +340,9 @@ Rectangle {
}
}
Completer {
contentItem: Completer {
id: completer
anchors.fill: parent
rowMargin: 2
rowSpacing: 0
}
......
......@@ -32,8 +32,7 @@ Popup {
roomTextInput.forceActiveFocus();
}
Column {
anchors.fill: parent
contentItem: Column {
spacing: 1
MatrixTextField {
......
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