Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit cd7d1b7

Browse filesBrowse files
Merge pull request #7359 from livecodepanos/bugfix-11170_2
[11170] Turn off auto-suggestion in Android native password fields
2 parents b2310fd + 7f4b9f4 commit cd7d1b7
Copy full SHA for cd7d1b7

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎engine/src/java/com/runrev/android/nativecontrol/InputControl.java

Copy file name to clipboardExpand all lines: engine/src/java/com/runrev/android/nativecontrol/InputControl.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public void setIsPassword(boolean p_password)
247247
{
248248
m_transformation_method = m_text_view.getTransformationMethod();
249249
m_text_view.setTransformationMethod(PasswordTransformationMethod.getInstance());
250-
m_text_view.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
250+
m_text_view.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS | InputType.TYPE_TEXT_VARIATION_PASSWORD);
251251
}
252252
else if (!p_password && m_transformation_method != null)
253253
{

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.