1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-19 06:55:24 +02:00

fix: pluginpicker keep close button in the right

Change-Id: Id74bf3661942fbd7b8b0235428b0e3d34fb0e6b8
This commit is contained in:
agsantos 2021-04-19 14:20:43 -04:00 committed by Sébastien Blin
parent de261df86f
commit 980de92c68

View file

@ -93,22 +93,9 @@ Popup {
RowLayout {
height: JamiTheme.preferredFieldHeight
PushButton {
id: closeButton
Layout.leftMargin: 5
Layout.topMargin: 5
source: "qrc:/images/icons/round-close-24px.svg"
imageColor: JamiTheme.textColor
onClicked: {
root.close()
}
}
Text {
Layout.topMargin: 10
Layout.rightMargin: 5 + closeButton.width
Layout.leftMargin: 5 + closeButton.width
Layout.alignment: Qt.AlignCenter
Layout.fillWidth: true
@ -121,6 +108,20 @@ Popup {
text: qsTr("Choose plugin")
}
PushButton {
id: closeButton
Layout.alignment: Qt.AlignRight
Layout.rightMargin: 5
Layout.topMargin: 5
source: "qrc:/images/icons/round-close-24px.svg"
imageColor: JamiTheme.textColor
onClicked: {
root.close()
}
}
}
ListView {