mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Fix completer size on plasma6
This commit is contained in:
parent
a9ec130cbe
commit
b9ffcffe2d
4 changed files with 4 additions and 6 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue