Make report error title in snackbar uppercase again
This commit is contained in:
parent
85acc53d40
commit
3ff85c2ab7
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ public class ErrorActivity extends AppCompatActivity {
|
||||||
if (rootView != null) {
|
if (rootView != null) {
|
||||||
Snackbar.make(rootView, R.string.error_snackbar_message, 3 * 1000)
|
Snackbar.make(rootView, R.string.error_snackbar_message, 3 * 1000)
|
||||||
.setActionTextColor(Color.YELLOW)
|
.setActionTextColor(Color.YELLOW)
|
||||||
.setAction(R.string.error_snackbar_action, v ->
|
.setAction(context.getString(R.string.error_snackbar_action).toUpperCase(), v ->
|
||||||
startErrorActivity(returnActivity, context, errorInfo, el)).show();
|
startErrorActivity(returnActivity, context, errorInfo, el)).show();
|
||||||
} else {
|
} else {
|
||||||
startErrorActivity(returnActivity, context, errorInfo, el);
|
startErrorActivity(returnActivity, context, errorInfo, el);
|
||||||
|
|
Loading…
Add table
Reference in a new issue