mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-02-26 22:33:53 +01:00
DroidFish: Don't disable boldface in android 4.2. The crash bug only affects 4.1.
This commit is contained in:
parent
d2cbde4aac
commit
c16424aa9c
|
@ -30,7 +30,7 @@ public final class Util {
|
|||
// Using bold face causes crashes in android 4.1, see:
|
||||
// http://code.google.com/p/android/issues/detail?id=34872
|
||||
final int sdkVersion = Integer.parseInt(Build.VERSION.SDK);
|
||||
if (sdkVersion >= 16) {
|
||||
if (sdkVersion == 16) {
|
||||
boldStart = "";
|
||||
boldStop = "";
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue
Block a user