Merge pull request #547

3c8a552 fix addressbook button width (Jaquee)
6a666ea fix dynamic width on send btn (Jaquee)
1918c5e fix dynamic button width (Jaquee)
pull/2/head
Riccardo Spagni 7 years ago
commit fd4619628c
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -43,8 +43,8 @@ Item {
signal clicked()
// Dynamic label width
width: label.contentWidth + 20
Layout.minimumWidth: 100
Layout.minimumWidth: (label.contentWidth > 100)? label.contentWidth + 20 : 100
Rectangle {

@ -27,6 +27,7 @@
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import QtQuick 2.0
import QtQuick.Layouts 1.1
import "../components"
import moneroComponents.AddressBook 1.0
import moneroComponents.AddressBookModel 1.0
@ -138,14 +139,15 @@ Rectangle {
placeholderText: qsTr("Give this entry a name or description") + translationManager.emptyString
}
StandardButton {
RowLayout {
id: addButton
anchors.left: parent.left
anchors.top: descriptionLine.bottom
anchors.leftMargin: 17
anchors.topMargin: 17
width: 60
StandardButton {
shadowReleasedColor: "#FF4304"
shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C"
@ -173,6 +175,9 @@ Rectangle {
}
}
}
}
Item {
id: expandItem

@ -84,7 +84,6 @@ Rectangle {
RowLayout {
StandardButton {
id: closeWalletButton
width: 100
text: qsTr("Close wallet") + translationManager.emptyString
shadowReleasedColor: "#FF4304"
shadowPressedColor: "#B32D00"
@ -118,7 +117,6 @@ Rectangle {
releasedColor: "#FF6C3C"
pressedColor: "#FF4304"
text: qsTr("Show seed") + translationManager.emptyString
Layout.alignment: Qt.AlignRight
onClicked: {
settingsPasswordDialog.open();
}

@ -375,13 +375,15 @@ Rectangle {
return amount_ok && address_ok && payment_id_ok
}
StandardButton {
id: sendButton
RowLayout {
anchors.left: parent.left
anchors.top: descriptionLine.bottom
anchors.leftMargin: 17
anchors.topMargin: 17
width: 60
StandardButton {
id: sendButton
text: qsTr("Send") + translationManager.emptyString
shadowReleasedColor: "#FF4304"
shadowPressedColor: "#B32D00"
@ -400,6 +402,9 @@ Rectangle {
}
}
}
} // pageRoot
Rectangle {