text: Fix password content hint value
authorKrzesimir Nowak <krnowak@openismus.com>
Thu, 18 Apr 2013 14:47:19 +0000 (16:47 +0200)
committerKristian Høgsberg <krh@bitplanet.net>
Thu, 2 May 2013 20:22:07 +0000 (16:22 -0400)
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>
protocol/text.xml

index 3334769..dc86c16 100644 (file)
@@ -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"/>