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 33a76a6eed
commit 5dbaf2f766

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,