Skip to content
Snippets Groups Projects
Commit 980de92c authored by Aline Gondim Santos's avatar Aline Gondim Santos Committed by Sébastien Blin
Browse files

fix: pluginpicker keep close button in the right

Change-Id: Id74bf3661942fbd7b8b0235428b0e3d34fb0e6b8
parent de261df8
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
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