Fixed alert dialog for not loaded libraries on Android being cancelable.
If the alert dialog could be canceled the Activity would not be finished here. Also setting the property to "true" would be redundant because that is default.
This commit is contained in:
parent
1d8143941f
commit
1e55e039ec
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ public class SDLActivity extends Activity {
|
|||
SDLActivity.mSingleton.finish();
|
||||
}
|
||||
});
|
||||
dlgAlert.setCancelable(true);
|
||||
dlgAlert.setCancelable(false);
|
||||
dlgAlert.create().show();
|
||||
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue