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
Родитель f8154cb9d3
Коммит d9be7ab180
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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,