am 994530d9: Show source dictionary name of suggestions in the debug mode
* commit '994530d9bdc7684cc4501b0ced567ae1b393c2e8': Show source dictionary name of suggestions in the debug modemain
commit
f1c6b4df1c
|
@ -432,7 +432,8 @@ public final class Suggest {
|
|||
final String scoreInfoString;
|
||||
if (normalizedScore > 0) {
|
||||
scoreInfoString = String.format(
|
||||
Locale.ROOT, "%d (%4.2f)", cur.mScore, normalizedScore);
|
||||
Locale.ROOT, "%d (%4.2f), %s", cur.mScore, normalizedScore,
|
||||
cur.mSourceDict.mDictType);
|
||||
} else {
|
||||
scoreInfoString = Integer.toString(cur.mScore);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue