PasswordBar: Use input-dialpad icon when normal keyboard is opened

When the normal keyboard is selected by tapping on the keyboard icon
in the PasswordBar, change the icon to the dialpad icon, to indicate
tapping will return to the numeric entry.
This commit is contained in:
Rodney Dawes 2021-10-08 15:02:26 -04:00
parent d14f21231c
commit b7cac91ef5

View file

@ -185,7 +185,7 @@ Rectangle {
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
anchors.margins: PlasmaCore.Units.smallSpacing anchors.margins: PlasmaCore.Units.smallSpacing
implicitWidth: height implicitWidth: height
icon.name: "input-keyboard-virtual-symbolic" icon.name: root.isPinMode ? "input-keyboard-virtual-symbolic" : "input-dialpad-symbolic"
onClicked: { onClicked: {
root.isPinMode = !root.isPinMode; root.isPinMode = !root.isPinMode;
if (!root.isPinMode) { if (!root.isPinMode) {