lockscreen: fix possible scaling issues
This commit is contained in:
parent
57078cd364
commit
b9e744b506
|
@ -6,12 +6,12 @@ Item {
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
scale: 2
|
|
||||||
|
|
||||||
TextField {
|
TextField {
|
||||||
id: entryBox
|
id: entryBox
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
width: 300
|
width: 600
|
||||||
|
font.pointSize: 24
|
||||||
|
|
||||||
enabled: context.status != AuthContext.Status.Authenticating
|
enabled: context.status != AuthContext.Status.Authenticating
|
||||||
focus: true
|
focus: true
|
||||||
|
@ -32,11 +32,12 @@ Item {
|
||||||
Text {
|
Text {
|
||||||
id: status
|
id: status
|
||||||
color: "white"
|
color: "white"
|
||||||
|
font.pointSize: 24
|
||||||
|
|
||||||
anchors {
|
anchors {
|
||||||
horizontalCenter: entryBox.horizontalCenter
|
horizontalCenter: entryBox.horizontalCenter
|
||||||
top: entryBox.bottom
|
top: entryBox.bottom
|
||||||
topMargin: 20
|
topMargin: 40
|
||||||
}
|
}
|
||||||
|
|
||||||
text: {
|
text: {
|
||||||
|
|
Loading…
Reference in a new issue