mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 16:28:14 +00:00
Merge pull request #1789
fa0c691
PasswordDialog: add ability to toggle text echo mode (mmbyday)
This commit is contained in:
commit
3712da7e3f
4 changed files with 27 additions and 3 deletions
|
@ -40,6 +40,7 @@ Item {
|
|||
visible: false
|
||||
z: parent.z + 2
|
||||
|
||||
property bool isHidden: true
|
||||
property alias password: passwordInput.text
|
||||
property string walletName
|
||||
property string errorText
|
||||
|
@ -136,12 +137,33 @@ Item {
|
|||
color: "black"
|
||||
|
||||
Image {
|
||||
width: 12
|
||||
height: 16
|
||||
source: "../images/lockIcon.png"
|
||||
width: 26 * scaleRatio
|
||||
height: 26 * scaleRatio
|
||||
opacity: 0.7
|
||||
fillMode: Image.PreserveAspectFit
|
||||
source: isHidden ? "../images/eyeShow.png" : "../images/eyeHide.png"
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
anchors.right: parent.right
|
||||
anchors.rightMargin: 20
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
hoverEnabled: true
|
||||
onClicked: {
|
||||
passwordInput.echoMode = isHidden ? TextInput.Normal : TextInput.Password;
|
||||
isHidden = !isHidden;
|
||||
}
|
||||
onEntered: {
|
||||
parent.opacity = 0.9
|
||||
parent.width = 28 * scaleRatio
|
||||
parent.height = 28 * scaleRatio
|
||||
}
|
||||
onExited: {
|
||||
parent.opacity = 0.7
|
||||
parent.width = 26 * scaleRatio
|
||||
parent.height = 26 * scaleRatio
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
BIN
images/eyeHide.png
Normal file
BIN
images/eyeHide.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.7 KiB |
BIN
images/eyeShow.png
Normal file
BIN
images/eyeShow.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.8 KiB |
2
qml.qrc
2
qml.qrc
|
@ -226,5 +226,7 @@
|
|||
<file>images/settings_navbar_side_active.png</file>
|
||||
<file>images/settings_local.png</file>
|
||||
<file>components/WarningBox.qml</file>
|
||||
<file>images/eyeHide.png</file>
|
||||
<file>images/eyeShow.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
|
Loading…
Reference in a new issue