Skip to content
Snippets Groups Projects
Commit 6f762a89 authored by Albert  Babí Oller's avatar Albert Babí Oller Committed by Sébastien Blin
Browse files

settings: change echo mode for sip accounts password

- add echoMode to SettingsMaterialLineEdit
- change echoMode in settings -> password for sip accounts

Change-Id: I0533db56cbce34829b603b58eae7d276a6ae33bd
parent 8c4914cd
Branches
Tags
No related merge requests found
......@@ -82,5 +82,6 @@ ColumnLayout {
titleField: qsTr("Password")
itemWidth: root.itemWidth
onEditFinished: SettingsAdapter.setAccountConfig_Password(textField)
echoMode: TextInput.Password
}
}
\ No newline at end of file
}
......@@ -36,6 +36,7 @@ RowLayout {
property string textField: ""
property int itemWidth
property int wrapMode: Text.NoWrap
property int echoMode: TextInput.Normal
signal editFinished
......@@ -75,6 +76,7 @@ RowLayout {
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignVCenter
wrapMode: root.wrapMode
echoMode: root.echoMode
padding: 8
onEditingFinished: {
......@@ -82,4 +84,4 @@ RowLayout {
editFinished()
}
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment