aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-08-02 14:05:23 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-08-02 14:05:23 -0500
commit8076e711094d079d04c913184f22442ff3819262 (patch)
tree69cef3dfac5d95c6e9c280ae6fb22a15bb10a8b7 /components
parent51e0f442d6c7b2b9e849fa4cccc75d55fddbc402 (diff)
parent2842c337592ab806303770ff927fb9751fe57c26 (diff)
downloadmonzero-gui-8076e711094d079d04c913184f22442ff3819262.tar.gz
monzero-gui-8076e711094d079d04c913184f22442ff3819262.tar.xz
monzero-gui-8076e711094d079d04c913184f22442ff3819262.zip
Merge pull request #1528
2842c33 Fix some QML warnings (MaxXor)
Diffstat (limited to 'components')
-rw-r--r--components/InputDialog.qml2
-rw-r--r--components/TitleBar.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/components/InputDialog.qml b/components/InputDialog.qml
index fd1c3e3d..e51a16db 100644
--- a/components/InputDialog.qml
+++ b/components/InputDialog.qml
@@ -65,7 +65,7 @@ Item {
}
ColumnLayout {
- z: bg.z + 1
+ z: parent.z + 1
id: mainLayout
spacing: 10
anchors { fill: parent; margins: 35 }
diff --git a/components/TitleBar.qml b/components/TitleBar.qml
index fcbe53dc..581e4cb1 100644
--- a/components/TitleBar.qml
+++ b/components/TitleBar.qml
@@ -68,7 +68,7 @@ Rectangle {
z: parent.z + 1
Image {
- anchors.fill: titleBar
+ anchors.fill: parent
height: titleBar.height
width: titleBar.width
source: "../images/titlebarGradient.jpg"