mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Pin dialog shows
seems to still not be possible to know how many attempts are left
This commit is contained in:
parent
422695bae1
commit
9ee815108d
2 changed files with 10 additions and 23 deletions
|
|
@ -86,32 +86,14 @@ Item {
|
|||
}
|
||||
}
|
||||
|
||||
Loader {
|
||||
id: dialerOverlay
|
||||
function open() {
|
||||
source = Qt.resolvedUrl("Dialer.qml")
|
||||
dialerOverlay.item.open();
|
||||
}
|
||||
function close() {
|
||||
dialerOverlay.item.close();
|
||||
}
|
||||
anchors {
|
||||
left: parent.left
|
||||
top: statusPanel.bottom
|
||||
right: parent.right
|
||||
bottom: parent.bottom
|
||||
}
|
||||
z: 20
|
||||
}
|
||||
Loader {
|
||||
id: pinOverlay
|
||||
anchors {
|
||||
left: parent.left
|
||||
top: statusPanel.bottom
|
||||
right: parent.right
|
||||
bottom: parent.bottom
|
||||
fill: parent
|
||||
topMargin: containment.availableScreenRect.y
|
||||
bottomMargin: parent.height - containment.availableScreenRect.height - containment.availableScreenRect.y
|
||||
}
|
||||
z: 21
|
||||
z: 222
|
||||
source: Qt.resolvedUrl("Pin.qml")
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -26,9 +26,14 @@ import "../components"
|
|||
|
||||
Rectangle {
|
||||
id: pinScreen
|
||||
width:1000
|
||||
height:1900
|
||||
//anchors.fill: parent
|
||||
|
||||
color: "black"
|
||||
opacity: 0.8
|
||||
visible: simManager.pinRequired != OfonoSimManager.NoPin
|
||||
//visible: true
|
||||
property OfonoSimManager simManager: ofonoSimManager
|
||||
|
||||
OfonoManager {
|
||||
|
|
@ -123,7 +128,7 @@ Rectangle {
|
|||
verticalAlignment: Qt.AlignVCenter
|
||||
font.pixelSize: theme.defaultFont.pixelSize
|
||||
color: textColor
|
||||
text: i18n("%1 attempts left", (simManager.pinRetries ? simManager.pinRetries[simManager.pinRequired] : 0));
|
||||
text: /*i18n("%1 attempts left", (simManager.pinRetries ? simManager.pinRetries[simManager.pinRequired] : 0));*/ simManager.pinRetries[simManager.pinRequired] +"--"+ simManager.pinRequired
|
||||
}
|
||||
|
||||
Text {
|
||||
|
|
|
|||
Loading…
Reference in a new issue