Skip to content

Commit

Permalink
Fixed upper case button in alert dialog for not loaded libraries on A…
Browse files Browse the repository at this point in the history
…ndroid.

This is more consistent with the buttons of other dialogs on Android.
  • Loading branch information
philippwiesemann committed Oct 23, 2014
1 parent d4bdd24 commit 4a67627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android-project/src/org/libsdl/app/SDLActivity.java
Expand Up @@ -124,7 +124,7 @@ protected void onCreate(Bundle savedInstanceState) {
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
dlgAlert.setMessage("An error occurred while trying to start the application. Please try again and/or reinstall.");
dlgAlert.setTitle("SDL Error");
dlgAlert.setPositiveButton("EXIT",
dlgAlert.setPositiveButton("Exit",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int id) {
// if this button is clicked, close current activity
Expand Down

0 comments on commit 4a67627

Please sign in to comment.