Bug 684826 - Last typed character from password field is not visible when password is filled in [r=blassey]

This commit is contained in:
Mark Finkle
2011-10-10 10:52:06 -04:00
parent 9bedb3fa59
commit cc498a117f

View File

@@ -1334,11 +1334,11 @@ public class GeckoAppShell
try {
int showPassword =
Settings.System.getInt(GeckoApp.mAppContext.getContentResolver(),
Settings.System.TEXT_SHOW_PASSWORD);
Settings.System.TEXT_SHOW_PASSWORD, 1);
return (showPassword > 0);
}
catch (Exception e) {
return false;
return true;
}
}
public static void addPluginView(final View view,