diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-12-18 09:52:02 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-12-18 09:52:02 -0600 |
| commit | 4c3f84a69501764015a00a3dd5497f11325354b6 (patch) | |
| tree | f3cda2dfe00d685259518a403eb16992df96bf36 /components | |
| parent | 9b3a0d5b13bcc3e9c1b388c5a16b1805892dbce9 (diff) | |
| parent | 515bb16418564ff3990b489d37c115a5f82f3e72 (diff) | |
| download | monzero-gui-4c3f84a69501764015a00a3dd5497f11325354b6.tar.gz monzero-gui-4c3f84a69501764015a00a3dd5497f11325354b6.tar.xz monzero-gui-4c3f84a69501764015a00a3dd5497f11325354b6.zip | |
Merge pull request #1835
515bb16 fix various QML warnings (xiphon)
Diffstat (limited to 'components')
| -rw-r--r-- | components/CheckBox2.qml | 1 | ||||
| -rw-r--r-- | components/LineEditMulti.qml | 1 | ||||
| -rw-r--r-- | components/NetworkStatusItem.qml | 3 | ||||
| -rw-r--r-- | components/PasswordDialog.qml | 3 |
4 files changed, 0 insertions, 8 deletions
diff --git a/components/CheckBox2.qml b/components/CheckBox2.qml index cb367079..39494001 100644 --- a/components/CheckBox2.qml +++ b/components/CheckBox2.qml @@ -57,7 +57,6 @@ RowLayout { height: label.height width: (label.width + indicatorRect.width + checkBox.textMargin) color: "transparent" - anchors.left: parent.left Text { id: label diff --git a/components/LineEditMulti.qml b/components/LineEditMulti.qml index 63b2dee2..191498f5 100644 --- a/components/LineEditMulti.qml +++ b/components/LineEditMulti.qml @@ -149,7 +149,6 @@ ColumnLayout { id: input readOnly: false addressValidation: false - anchors.top: item.showingHeader ? inputLabelRect.bottom : item.top Layout.fillWidth: true topPadding: item.showingHeader ? 10 * scaleRatio : 0 bottomPadding: 10 * scaleRatio diff --git a/components/NetworkStatusItem.qml b/components/NetworkStatusItem.qml index e9b1b3ae..edc22595 100644 --- a/components/NetworkStatusItem.qml +++ b/components/NetworkStatusItem.qml @@ -57,7 +57,6 @@ Rectangle { Item { id: iconItem - anchors.top: parent.top width: 40 * scaleRatio height: 40 * scaleRatio opacity: { @@ -84,8 +83,6 @@ Rectangle { } Item { - anchors.top: parent.top - anchors.left: iconItem.right height: 40 * scaleRatio width: 260 * scaleRatio diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index 01d91fec..eceef188 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -95,7 +95,6 @@ Item { Label { text: root.walletName.length > 0 ? qsTr("Please enter wallet password for: ") + root.walletName : qsTr("Please enter wallet password") - anchors.left: parent.left Layout.fillWidth: true font.pixelSize: 16 * scaleRatio @@ -108,7 +107,6 @@ Item { text: root.errorText visible: root.errorText - anchors.left: parent.left color: MoneroComponents.Style.errorColor font.pixelSize: 16 * scaleRatio font.family: MoneroComponents.Style.fontLight.name @@ -120,7 +118,6 @@ Item { id : passwordInput Layout.topMargin: 6 Layout.fillWidth: true - anchors.left: parent.left horizontalAlignment: TextInput.AlignLeft verticalAlignment: TextInput.AlignVCenter font.family: MoneroComponents.Style.fontLight.name |
