Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[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().
  • Loading branch information
lioncash committed Sep 10, 2013
1 parent 8ceb726 commit 84db868
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -135,13 +135,13 @@ public CharSequence getPageTitle(int position)
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;
Expand Down

0 comments on commit 84db868

Please sign in to comment.