mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
Merge pull request #529 from sigmabeta/quit-app-with-back
Allow user to quit Android app with back button.
This commit is contained in:
commit
ffacb26ff8
1 changed files with 8 additions and 1 deletions
|
@ -298,6 +298,13 @@ public final class GameListActivity extends Activity
|
||||||
@Override
|
@Override
|
||||||
public void onBackPressed()
|
public void onBackPressed()
|
||||||
{
|
{
|
||||||
SwitchPage(0);
|
if (mCurFragmentNum == 0)
|
||||||
|
{
|
||||||
|
finish();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
SwitchPage(0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue