| commit | 70deff4c107963164f8b88365909fd30ab5e6526 | [log] [tgz] |
|---|---|---|
| author | satok <satok@google.com> | Fri Sep 30 15:14:21 2011 +0900 |
| committer | satok <satok@google.com> | Fri Sep 30 17:49:40 2011 +0900 |
| tree | 44f8b238c740a0a031405074be5193c95f36feb0 | |
| parent | 5c06f0f0d0cd86039dcfa4375645d12b4678efa2 [diff] [blame] |
Use user's settings for the spell check language instead of the system locale Bug: 5390462 Change-Id: Ia2a3981cb93f451646debe5ee6b037313825cf9f
diff --git a/services/java/com/android/server/TextServicesManagerService.java b/services/java/com/android/server/TextServicesManagerService.java index c792b33..ef48b9e 100644 --- a/services/java/com/android/server/TextServicesManagerService.java +++ b/services/java/com/android/server/TextServicesManagerService.java
@@ -238,7 +238,8 @@ } } else if (scs.hashCode() == hashCode) { if (DBG) { - Slog.w(TAG, "Return subtype " + scs.hashCode()); + Slog.w(TAG, "Return subtype " + scs.hashCode() + ", input= " + locale + + ", " + scs.getLocale()); } return scs; }