Skip to content

Commit

Permalink
Android: Fix closing app with "exit" menu button
Browse files Browse the repository at this point in the history
Closes: #581
  • Loading branch information
AntumDeluge committed Nov 25, 2023
1 parent 5ee75ec commit 83bbb92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ public void onRequestQuit() {
builder.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(final DialogInterface dialog, final int id) {
finish();
android.os.Process.killProcess(android.os.Process.myPid());
}
});

Expand Down
1 change: 1 addition & 0 deletions doc/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Changelog
- deathmatch cannot be restarted while active
- fixed positioning of emojis in Java client
- fixed media autoplay in Android client
- fixed closing Android client with "exit" menu button

*clients*
- webclient now has an optional on-screen joystick
Expand Down

0 comments on commit 83bbb92

Please sign in to comment.