Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix lockcode postition
  • Loading branch information
neochapay committed Nov 30, 2016
1 parent 6123a82 commit d5359b4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/qml/DeviceLock.qml
Expand Up @@ -6,17 +6,16 @@ import QtQuick.Layouts 1.0

Item {
id: root
anchors.top: clock.bottom
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right

ColumnLayout {
anchors.fill: parent
spacing: 40

TextField {
id: lockCodeField
readOnly: true
echoMode: TextInput.PasswordEchoOnEdit
anchors.horizontalCenter: parent.horizontalCenter
}

GridLayout {
Expand Down
8 changes: 7 additions & 1 deletion src/qml/Lockscreen.qml
Expand Up @@ -15,7 +15,13 @@ Image {
}
DeviceLock {
id: deviceLockUI
anchors.fill: parent
anchors {
top: clock.bottom
left: parent.left
}

height: parent.height-clock.height

visible: deviceLock.state === 1
z: 201
}
Expand Down

0 comments on commit d5359b4

Please sign in to comment.