Fix the display name in the input method panel on tablet

Bug: 5103300
Change-Id: I20cec2bb822be6f15abfe4a21053c8eb8d48b9cc
This commit is contained in:
satok
2011-08-31 20:16:17 +09:00
parent 8da2a004b8
commit 209cf04353

View File

@@ -428,7 +428,7 @@ public class InputMethodsPanel extends LinearLayout implements StatusBarPanel,
private CharSequence getIMIName(InputMethodInfo imi) {
if (imi == null) return null;
return mPackageManager.getApplicationLabel(imi.getServiceInfo().applicationInfo);
return imi.loadLabel(mPackageManager);
}
private CharSequence getSubtypeName(InputMethodInfo imi, InputMethodSubtype subtype) {