mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-19 07:21:40 +00:00
Android: Properly set game settings title when navigating backwards
This commit is contained in:
parent
b919557e25
commit
bb2ee279cd
1 changed files with 6 additions and 4 deletions
|
@ -93,6 +93,12 @@ public final class SettingsFragmentPresenter
|
||||||
public void onViewCreated(MenuTag menuTag, Settings settings)
|
public void onViewCreated(MenuTag menuTag, Settings settings)
|
||||||
{
|
{
|
||||||
this.mMenuTag = menuTag;
|
this.mMenuTag = menuTag;
|
||||||
|
|
||||||
|
if (!TextUtils.isEmpty(mGameID))
|
||||||
|
{
|
||||||
|
mView.getActivity().setTitle(mContext.getString(R.string.game_settings, mGameID));
|
||||||
|
}
|
||||||
|
|
||||||
setSettings(settings);
|
setSettings(settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,10 +128,6 @@ public final class SettingsFragmentPresenter
|
||||||
|
|
||||||
private void loadSettingsList()
|
private void loadSettingsList()
|
||||||
{
|
{
|
||||||
if (!TextUtils.isEmpty(mGameID))
|
|
||||||
{
|
|
||||||
mView.getActivity().setTitle(mContext.getString(R.string.game_settings, mGameID));
|
|
||||||
}
|
|
||||||
ArrayList<SettingsItem> sl = new ArrayList<>();
|
ArrayList<SettingsItem> sl = new ArrayList<>();
|
||||||
|
|
||||||
switch (mMenuTag)
|
switch (mMenuTag)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue