diff options
author | Krzesimir Nowak <krnowak@openismus.com> | 2013-04-18 16:47:19 +0200 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2013-05-02 16:22:07 -0400 |
commit | f62e8cfae70bc606ccf3ee86d61cfc37afbd2e5e (patch) | |
tree | cc7209db94da0b2eb6d06a114a9504c7a1416db6 /protocol | |
parent | 08015b6ba0c28a5616f565761a79b0cb08340c60 (diff) | |
download | weston-f62e8cfae70bc606ccf3ee86d61cfc37afbd2e5e.tar.gz weston-f62e8cfae70bc606ccf3ee86d61cfc37afbd2e5e.tar.bz2 weston-f62e8cfae70bc606ccf3ee86d61cfc37afbd2e5e.zip |
text: Fix password content hint value
0xc in this case was a combination of "autocapitalization" (0x4) and
"lowercase" (0x8) instead of "hidden_text" (0x40) and "sensitive_data"
(0x80).
Signed-off-by: Jan Arne Petersen <jpetersen@openismus.com>
Diffstat (limited to 'protocol')
-rw-r--r-- | protocol/text.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/text.xml b/protocol/text.xml index 3334769e..dc86c167 100644 --- a/protocol/text.xml +++ b/protocol/text.xml @@ -88,7 +88,7 @@ </description> <entry name="none" value="0x0" summary="no special behaviour"/> <entry name="default" value="0x7" summary="auto completion, correction and capitalization"/> - <entry name="password" value="0xc" summary="hidden and sensitive text"/> + <entry name="password" value="0xc0" summary="hidden and sensitive text"/> <entry name="auto_completion" value="0x1" summary="suggest word completions"/> <entry name="auto_correction" value="0x2" summary="suggest word corrections"/> <entry name="auto_capitalization" value="0x4" summary="switch to uppercase letters at the start of a sentence"/> |