DroidFish: Don't disable boldface in android 4.2. The crash bug only affects 4.1.

This commit is contained in:
Peter Osterlund
2013-03-02 09:02:58 +00:00
parent d2cbde4aac
commit c16424aa9c

View File

@@ -30,7 +30,7 @@ public final class Util {
// Using bold face causes crashes in android 4.1, see: // Using bold face causes crashes in android 4.1, see:
// http://code.google.com/p/android/issues/detail?id=34872 // http://code.google.com/p/android/issues/detail?id=34872
final int sdkVersion = Integer.parseInt(Build.VERSION.SDK); final int sdkVersion = Integer.parseInt(Build.VERSION.SDK);
if (sdkVersion >= 16) { if (sdkVersion == 16) {
boldStart = ""; boldStart = "";
boldStop = ""; boldStop = "";
} else { } else {