[Android] Android uppercases the name of the tabs in the settings by default. So we don't have to call ".toUpperCase" in the string returns in getPageTitle().
This commit is contained in:
parent
8ceb72612a
commit
84db868187
|
@ -135,13 +135,13 @@ public final class PrefsActivity extends Activity implements ActionBar.TabListen
|
|||
switch(position)
|
||||
{
|
||||
case 0:
|
||||
return getString(R.string.cpu_settings).toUpperCase();
|
||||
return getString(R.string.cpu_settings);
|
||||
|
||||
case 1:
|
||||
return getString(R.string.input_settings).toUpperCase();
|
||||
return getString(R.string.input_settings);
|
||||
|
||||
case 2:
|
||||
return getString(R.string.video_settings).toUpperCase();
|
||||
return getString(R.string.video_settings);
|
||||
|
||||
default: // Should never happen.
|
||||
return null;
|
||||
|
|
Loading…
Reference in New Issue