mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-08-24 16:53:51 +02:00
fix: pluginpicker keep close button in the right
Change-Id: Id74bf3661942fbd7b8b0235428b0e3d34fb0e6b8
This commit is contained in:
parent
de261df86f
commit
980de92c68
1 changed files with 15 additions and 14 deletions
|
@ -93,22 +93,9 @@ Popup {
|
||||||
RowLayout {
|
RowLayout {
|
||||||
height: JamiTheme.preferredFieldHeight
|
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 {
|
Text {
|
||||||
Layout.topMargin: 10
|
Layout.topMargin: 10
|
||||||
Layout.rightMargin: 5 + closeButton.width
|
Layout.leftMargin: 5 + closeButton.width
|
||||||
Layout.alignment: Qt.AlignCenter
|
Layout.alignment: Qt.AlignCenter
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
||||||
|
@ -121,6 +108,20 @@ Popup {
|
||||||
|
|
||||||
text: qsTr("Choose plugin")
|
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 {
|
ListView {
|
||||||
|
|
Loading…
Add table
Reference in a new issue