From 4a67627e8b7e2e509f13eafc347af525df5d6bd4 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Thu, 23 Oct 2014 16:38:03 +0200 Subject: [PATCH] Fixed upper case button in alert dialog for not loaded libraries on Android. This is more consistent with the buttons of other dialogs on Android. --- android-project/src/org/libsdl/app/SDLActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android-project/src/org/libsdl/app/SDLActivity.java b/android-project/src/org/libsdl/app/SDLActivity.java index d2a5bd8cc..af877c459 100644 --- a/android-project/src/org/libsdl/app/SDLActivity.java +++ b/android-project/src/org/libsdl/app/SDLActivity.java @@ -124,7 +124,7 @@ public class SDLActivity extends Activity { 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