mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
[Android] Remove accidental fragment tag in GameListActivity (it was useless, since it's an empty string)
This commit is contained in:
parent
2025f00f88
commit
ee32c8b4e9
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ public final class GameListActivity extends Activity
|
||||||
mCurFragmentNum = 0;
|
mCurFragmentNum = 0;
|
||||||
final GameListFragment gameList = new GameListFragment();
|
final GameListFragment gameList = new GameListFragment();
|
||||||
FragmentTransaction ft = getFragmentManager().beginTransaction();
|
FragmentTransaction ft = getFragmentManager().beginTransaction();
|
||||||
ft.replace(R.id.content_frame, gameList, "");
|
ft.replace(R.id.content_frame, gameList);
|
||||||
ft.commit();
|
ft.commit();
|
||||||
invalidateOptionsMenu();
|
invalidateOptionsMenu();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue